Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 182 → Rev 183

/SPARTAN/trunk/test/print/test.c
File deleted
/SPARTAN/trunk/test/print/print1/test.c
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;
}
/SPARTAN/trunk/src/Makefile.config
20,7 → 20,7
#USERSPACE=__USERSPACE__
 
# Uncomment if you want to run in the test mode
#TEST=__TEST__
TEST=__TEST__
 
TEST_FILE=test.c
 
33,4 → 33,4
#TEST_DIR=synch/semaphore1/
#TEST_DIR=synch/semaphore2/
#TEST_DIR=fpu/fpu1
TEST_DIR=print
TEST_DIR=print/print1