Cleaned up the testing a bit.
[fw/pdclib] / testing / scan_test.h
index 9eae7c879884ee6a42f6c70f53764b75df18c30b..85d471b4064adc81929e2554bc4f078ac965e1ae 100644 (file)
@@ -9,8 +9,5 @@
 #include <string.h>
 #include <limits.h>
 
-#define CHECK_TRUE( a ) TESTCASE( a != 0 )
-#define CHECK_FALSE( a ) TESTCASE( a == 0 )
-#define CHECK_EQUAL( a, b ) do { int x = a; int y = b; TESTCASE( x == y ); } while ( 0 )
 #define CHECK_FEQUAL( a, b, T, F ) do { T x = a; T y = b; TESTCASE( x == y ); } while ( 0 )