XINU
Data Structures | Macros | Functions | Variables
testsuite.h File Reference

Go to the source code of this file.

Data Structures

struct  testcase
 

Macros

#define failif(cond, failmsg)
 
#define TESTSTK   8192 /* size of process stack used for test */
 

Functions

process test_addargs (bool8)
 
process test_bigargs (bool8)
 
process test_libStdio (bool8 verbose)
 
process test_preempt (bool8 verbose)
 
process test_recursion (bool8 verbose)
 
process test_schedule (bool8 verbose)
 
process test_semaphore (bool8 verbose)
 
process test_semaphore2 (bool8 verbose)
 
process test_semaphore3 (bool8 verbose)
 
process test_semaphore4 (bool8 verbose)
 
process test_semaphore5 (bool8 verbose)
 
void testFail (bool8, const char *)
 
void testPass (bool8, const char *)
 
void testPrint (bool8, const char *)
 
void testSkip (bool8, const char *)
 

Variables

int ntests
 
struct testcase testtab []
 

Macro Definition Documentation

◆ failif

#define failif (   cond,
  failmsg 
)
Value:
if ( cond ) { testFail(verbose, failmsg); passed = FALSE; } \
else { testPass(verbose, ""); }
void testFail(bool8, const char *)
void testPass(bool8, const char *)
#define FALSE
Boolean False(0)
Definition: kernel.h:63

Definition at line 24 of file testsuite.h.

◆ TESTSTK

#define TESTSTK   8192 /* size of process stack used for test */

Definition at line 38 of file testsuite.h.

Function Documentation

◆ test_addargs()

process test_addargs ( bool8  )

◆ test_bigargs()

process test_bigargs ( bool8  )

◆ test_libStdio()

process test_libStdio ( bool8  verbose)

◆ test_preempt()

process test_preempt ( bool8  verbose)

◆ test_recursion()

process test_recursion ( bool8  verbose)

◆ test_schedule()

process test_schedule ( bool8  verbose)

◆ test_semaphore()

process test_semaphore ( bool8  verbose)

◆ test_semaphore2()

process test_semaphore2 ( bool8  verbose)

◆ test_semaphore3()

process test_semaphore3 ( bool8  verbose)

◆ test_semaphore4()

process test_semaphore4 ( bool8  verbose)

◆ test_semaphore5()

process test_semaphore5 ( bool8  verbose)

◆ testFail()

void testFail ( bool8  ,
const char *   
)

◆ testPass()

void testPass ( bool8  ,
const char *   
)

◆ testPrint()

void testPrint ( bool8  ,
const char *   
)

◆ testSkip()

void testSkip ( bool8  ,
const char *   
)

Variable Documentation

◆ ntests

int ntests

◆ testtab

struct testcase testtab[]