summaryrefslogtreecommitdiffstats
path: root/tests/tests.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/tests.c')
-rw-r--r--tests/tests.c30
1 files changed, 0 insertions, 30 deletions
diff --git a/tests/tests.c b/tests/tests.c
deleted file mode 100644
index 62b3df8d..00000000
--- a/tests/tests.c
+++ /dev/null
@@ -1,30 +0,0 @@
-#include <check.h>
-#include <stdint.h>
-#include <bitfield/bitfield.h>
-
-START_TEST (test_fail)
-{
- fail_if(true);
-}
-END_TEST
-
-Suite* bitfieldSuite(void) {
- Suite* s = suite_create("iso15765");
- TCase *tc_core = tcase_create("core");
- tcase_add_test(tc_core, test_fail);
- suite_add_tcase(s, tc_core);
-
- return s;
-}
-
-int main(void) {
- int numberFailed;
- Suite* s = bitfieldSuite();
- 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;
-}