diff test/suite3/main.cc @ 413:d73dc7ad37e4

- fix nameclash due to a previous and bad cleanup
author Tassilo Philipp
date Thu, 07 Oct 2021 11:29:36 +0200
parents 7608e34098b0
children 85b7a117b807
line wrap: on
line diff
--- a/test/suite3/main.cc	Thu Oct 07 09:31:54 2021 +0200
+++ b/test/suite3/main.cc	Thu Oct 07 11:29:36 2021 +0200
@@ -88,7 +88,7 @@
 #define test(x) if (!(x)) return false
 
 
-bool test(int x)
+bool test_case(int x)
 {
   clearValues();
 
@@ -129,7 +129,7 @@
   bool tr = true;
   for (int i = from ; i < to ; ++i ) {
     printf("%d:",i);
-    bool r = test(i);
+    bool r = test_case(i);
     printf("%d\n", r);
     tr &= r;
   }