Initial import of binutils 2.22 on the new vendor branch
[dragonfly.git] / test / testcases / sample / testk2 / testk1.c
1 #include <sys/systm.h>
2 #include <sys/kernel.h>
3 #include <sys/module.h>
4 #include "../../../framework/tbridge.h"
5 #include "../../../framework/dfregress.h"
6
7 static void
8 testk1_run(void *arg __unused)
9 {
10         kprintf("testk1_run called!\n");
11
12
13         tbridge_printf("Starting run!\n");
14
15         tbridge_printf("Pretty much done!\n");
16
17         tbridge_test_done(RESULT_PASS);
18 }
19
20 static struct tbridge_testcase testk1_case = {
21         .tb_run         = testk1_run,
22         .tb_abort       = NULL
23 };
24
25 TBRIDGE_TESTCASE_MODULE(testk1, &testk1_case);