Try to get TAP working

This commit is contained in:
Ruben Laguna
2015-02-07 21:02:22 +01:00
parent 0ffb066242
commit 4ac616a7dd
8 changed files with 844 additions and 1 deletions

View File

@@ -41,5 +41,6 @@ int main(int argc, char *argv[])
g_test_add("/set0/my second test", /* type fixture*/ dfixture, /*tdata*/NULL, /*fsetup*/ my_setup, my_second_test, my_teardown);
g_test_add("/set0/my third test", /* type fixture*/ dfixture, /*tdata*/NULL, /*fsetup*/ my_setup, my_third_test, my_teardown);
g_test_add("/set0/my fourth test", /* type fixture*/ dfixture, /*tdata*/NULL, /*fsetup*/ my_setup, my_fourth_test, my_teardown);
return g_test_run();
g_test_run();
return 0;
}