]> git.sur5r.net Git - cc65/commitdiff
removed common.h reference
authormrdudz <mrdudz@users.noreply.github.com>
Sun, 23 Nov 2014 11:50:47 +0000 (12:50 +0100)
committermrdudz <mrdudz@users.noreply.github.com>
Sun, 23 Nov 2014 11:50:47 +0000 (12:50 +0100)
test/readme.txt
test/todo [deleted file]
test/val/cc65091020.c
test/val/compare5.c

index 673ecabdbcf6ceb668a896875fe520cf4d0a7687..ca188878b00a2c5e54d1c09468f17ff6bf3f5b12 100644 (file)
@@ -14,3 +14,10 @@ compiler.
 
 to run the tests use "make" in this (top) directory, the makefile should exit
 with no error.
+
+--------------------------------------------------------------------------------
+
+TODO:
+
+- reduce usage of "common.h" to a minimum
+- convert more tests from using reference output to returning an exit code
diff --git a/test/todo b/test/todo
deleted file mode 100644 (file)
index 08f04ad..0000000
--- a/test/todo
+++ /dev/null
@@ -1,2 +0,0 @@
-
-- reduce usage of "common.h" to a minimum
index 8f62f970e412b8ed2b4197e8e3714b3fa39ee433..d23b70a06d15cc3f8251c409b84719b3b19e8645 100644 (file)
@@ -5,8 +5,7 @@
   !!AUTHOR!!      Johan Kotlinski
 */
 
-#include "common.h"
-
+#include <stdio.h>
 #include <assert.h>
 
 struct {
index b0a9f1649057943eb7d1029064da065685e6aa18..9e0c97a635f0b3d03f5beadba6ca4f14b5a3839c 100644 (file)
@@ -4,8 +4,6 @@
   !!LICENCE!!     GPL, read COPYING.GPL
 */
 
-#include "common.h"
-
 #include <stdio.h>
 #include <limits.h>
 
@@ -19,9 +17,6 @@ unsigned char success = 0;
 unsigned char failures = 0;
 unsigned char dummy = 0;
 
-#ifdef SUPPORT_BIT_TYPES
-bit bit0 = 0;
-#endif
 int int0 = 0;
 int int1 = 0;
 char char0 = 0;