Xen Test Framework
main.c
Go to the documentation of this file.
1 
11 #include <xtf.h>
12 
13 const char test_title[] = "Hello World";
14 
15 void test_main(void)
16 {
18 }
19 
20 /*
21  * Local variables:
22  * mode: C
23  * c-file-style: "BSD"
24  * c-basic-offset: 4
25  * tab-width: 4
26  * indent-tabs-mode: nil
27  * End:
28  */
#define NULL
Definition: stddef.h:12
void xtf_success(const char *fmt,...)
Report test success.
Definition: report.c:38
void test_main(void)
To be implemented by each test, as its entry point.
Definition: main.c:137
const char test_title[]
The title of the test.
Definition: main.c:14