diff options
author | Christopher Peplin <chris.peplin@rhubarbtech.com> | 2013-12-30 15:25:32 -0500 |
---|---|---|
committer | Christopher Peplin <chris.peplin@rhubarbtech.com> | 2013-12-30 15:25:32 -0500 |
commit | 06f31c13df6aaf92124f10b8cb5eee96b75c4f73 (patch) | |
tree | f11bf819b17ae9de7399eb055160fb44dc64b04f /tests |
Initial commit.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/tests.c | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/tests/tests.c b/tests/tests.c new file mode 100644 index 00000000..68745652 --- /dev/null +++ b/tests/tests.c @@ -0,0 +1,37 @@ +#include <check.h> +#include <stdint.h> +#include <stdio.h> +#include <stdlib.h> +#include <stdarg.h> + +void setup() { + +} + +START_TEST (test_fail) +{ + fail_unless(false); +} +END_TEST + +Suite* testSuite(void) { + Suite* s = suite_create("obd2"); + TCase *tc_core = tcase_create("core"); + tcase_add_checked_fixture(tc_core, setup, NULL); + tcase_add_test(tc_core, test_fail); + suite_add_tcase(s, tc_core); + + return s; +} + +int main(void) { + int numberFailed; + Suite* s = testSuite(); + SRunner *sr = srunner_create(s); + // Don't fork so we can actually use gdb + srunner_set_fork_status(sr, CK_NOFORK); + srunner_run_all(sr, CK_NORMAL); + numberFailed = srunner_ntests_failed(sr); + srunner_free(sr); + return (numberFailed == 0) ? 0 : 1; +} |