00001 #include <kernel.h> 00002 #include <proc.h> 00003 #include <semaphore.h> 00004 #include <stdio.h> 00005 00006 void testPass(const char *msg) 00007 { 00008 printf("\033[40G[\033[1;32mPASSED\033[0;39m] %s\n", msg); 00009 } 00010 00011 void testFail(const char *msg) 00012 { 00013 printf("\033[40G[\033[1;31mFAILED\033[0;39m] %s\n", msg); 00014 }