diff test/suite/main.c @ 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 0f40e13a2f0a
line wrap: on
line diff
--- a/test/suite/main.c	Thu Oct 07 09:31:54 2021 +0200
+++ b/test/suite/main.c	Thu Oct 07 11:29:36 2021 +0200
@@ -110,7 +110,7 @@
 #define test(x) if (!(x)) return DC_FALSE
 
 
-DCbool test(int x)
+DCbool test_case(int x)
 {
   int y = x;
   int selects[NARGS] = { 0, };
@@ -153,7 +153,7 @@
   int i;
   for(i=from; i<to; ++i) {
     printf("%d:",i);
-    r = test(i);
+    r = test_case(i);
     printf("%d\n", r);
     tr &= r;
   }