XINU
testsuite.h
Go to the documentation of this file.
1 /* testsuite.h - failif */
2 
6 process test_preempt(bool8 verbose);
13 process test_libStdio(bool8 verbose);
14 
15 void testPass(bool8, const char *);
16 void testFail(bool8, const char *);
17 void testSkip(bool8, const char *);
18 void testPrint(bool8, const char *);
19 
20 /*------------------------------------------------------------------------
21  * failif - report failure by displaying a message is condition is met
22  *------------------------------------------------------------------------
23  */
24 #define failif(cond, failmsg) \
25  if ( cond ) { testFail(verbose, failmsg); passed = FALSE; } \
26  else { testPass(verbose, ""); }
27 
28 /* Define the strcuture of an entry in the table of test cases */
29 
30 struct testcase {
31  char *name; /* Name of test case */
32  process (*test) (bool8);/* Test case function */
33 };
34 
35 extern int ntests; /* total number of tests */
36 extern struct testcase testtab[]; /* table of test cases */
37 
38 #define TESTSTK 8192 /* size of process stack used for test */
process(* test)(bool8)
Definition: testsuite.h:32
process test_semaphore4(bool8 verbose)
void testFail(bool8, const char *)
char * name
Definition: testsuite.h:31
process test_schedule(bool8 verbose)
byte bool8
Boolean値
Definition: kernel.h:36
process test_preempt(bool8 verbose)
void testPass(bool8, const char *)
process test_semaphore2(bool8 verbose)
struct testcase testtab[]
process test_semaphore5(bool8 verbose)
process test_semaphore3(bool8 verbose)
process test_libStdio(bool8 verbose)
process test_bigargs(bool8)
process test_recursion(bool8 verbose)
void testPrint(bool8, const char *)
int ntests
process test_addargs(bool8)
void testSkip(bool8, const char *)
process test_semaphore(bool8 verbose)
int32 process
プロセスの最上位レベル関数 返り値の型
Definition: kernel.h:53