Index: src/Makefile.config
===================================================================
--- src/Makefile.config	(revision 00e00fa7b44f51a7cd797dfe094651c497f309f3)
+++ src/Makefile.config	(revision a6f889981680d139ce46a5e36dd9d64fe4b49a2a)
@@ -21,5 +21,5 @@
 
 # Uncomment if you want to run in the test mode
-#TEST=__TEST__
+TEST=__TEST__
 
 TEST_FILE=test.c
@@ -34,3 +34,3 @@
 #TEST_DIR=synch/semaphore2/
 #TEST_DIR=fpu/fpu1
-TEST_DIR=print
+TEST_DIR=print/print1
Index: test/print/print1/test.c
===================================================================
--- test/print/print1/test.c	(revision a6f889981680d139ce46a5e36dd9d64fe4b49a2a)
+++ test/print/print1/test.c	(revision a6f889981680d139ce46a5e36dd9d64fe4b49a2a)
@@ -0,0 +1,14 @@
+
+#include <print.h>
+#include <test.h>
+
+void test(void)
+{
+	__u64 u64const = 0x0123456789ABCDEFLL;
+	printf(" Printf test \n");
+	printf(" Q  %Q  %q \n",u64const, u64const);
+	printf(" L  %L  %l \n",0x01234567 ,0x01234567);   
+	printf(" W  %W  %w \n",0x0123 ,0x0123);   
+	printf(" B  %B  %b \n",0x01 ,0x01);
+	return;
+}
Index: st/print/test.c
===================================================================
--- test/print/test.c	(revision 00e00fa7b44f51a7cd797dfe094651c497f309f3)
+++ 	(revision )
@@ -1,18 +1,0 @@
-
-#include <print.h>
-#include <test.h>
-
-void test(void)
-{
-    printf("char %c \n",'c');
-    __u64 u64const = 0x0123456789ABCDEFLL;
-//    printf(" p  %P  %p \n",0x1234567898765432);
-    printf(" Printf test \n");
-    printf(" Q  %Q  %q %Q \n",u64const, u64const);
-    printf(" L  %L  %l \n",0x12345678 ,0x12345678);   
-    printf(" W  %W  %w \n",0x1234 ,0x1234);   
-    printf(" B  %B  %B \n",0x12 ,0x12);   
-    
-    return;
-}
-
