changeset 413:d73dc7ad37e4

- fix nameclash due to a previous and bad cleanup
author Tassilo Philipp
date Thu, 07 Oct 2021 11:29:36 +0200
parents beb15f1065e6
children 49b669422ad8
files test/suite/main.c test/suite3/main.cc test/suite_floats/main.cc test/suite_x86win32fast/main.cc test/suite_x86win32std/main.cc
diffstat 5 files changed, 10 insertions(+), 10 deletions(-) [+]
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;
   }
--- 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;
   }
--- a/test/suite_floats/main.cc	Thu Oct 07 09:31:54 2021 +0200
+++ b/test/suite_floats/main.cc	Thu Oct 07 11:29:36 2021 +0200
@@ -78,7 +78,7 @@
 #define test(x) if (!(x)) return false
 
 
-bool test(int x)
+bool test_case(int x)
 {
   clearValues();
 
@@ -119,7 +119,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;
   }
--- a/test/suite_x86win32fast/main.cc	Thu Oct 07 09:31:54 2021 +0200
+++ b/test/suite_x86win32fast/main.cc	Thu Oct 07 11:29:36 2021 +0200
@@ -101,7 +101,7 @@
 #define test(x) if (!(x)) return false
 
 
-bool test(int x)
+bool test_case(int x)
 {
   clearValues();
 
@@ -150,7 +150,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;
   }
--- a/test/suite_x86win32std/main.cc	Thu Oct 07 09:31:54 2021 +0200
+++ b/test/suite_x86win32std/main.cc	Thu Oct 07 11:29:36 2021 +0200
@@ -100,7 +100,7 @@
 #define test(x) if (!(x)) return false
 
 
-bool test(int x)
+bool test_case(int x)
 {
   clearValues();
 
@@ -144,7 +144,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;
   }