Index: test/print/print1/test.c
===================================================================
--- test/print/print1/test.c	(revision dfbc2297945596bc138ea300b50da69b23b48d2a)
+++ test/print/print1/test.c	(revision dfbc2297945596bc138ea300b50da69b23b48d2a)
@@ -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: test/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;
-}
-
