From 43f7f54dadecb1d11b4fd9cd2af4889043865490 Mon Sep 17 00:00:00 2001 From: Daniel Silverstone Date: Sun, 11 Jun 2017 11:14:40 +0100 Subject: Switch to a check based test suite, start fixing bugs --- test/testmain.c | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 test/testmain.c (limited to 'test/testmain.c') diff --git a/test/testmain.c b/test/testmain.c new file mode 100644 index 0000000..9a6b257 --- /dev/null +++ b/test/testmain.c @@ -0,0 +1,50 @@ +/* test/testmain.c + * + * Core of the test suite for libnslog + * + * Copyright 2009, 2017 The NetSurf Browser Project + * Daniel Silverstone + */ + +#include +#include + +#include "tests.h" + +#ifndef UNUSED +#define UNUSED(x) ((x) = (x)) +#endif + +/* This means that assertion failures are silent in tests */ +#ifndef NDEBUG +void __assert_fail(const char *__assertion, const char *__file, + unsigned int __line, const char *__function) { + (void)__assertion; + (void)__file; + (void)__line; + (void)__function; + abort(); +} +#endif + +int +main(int argc, char **argv) +{ + int number_failed = 0; + SRunner *sr; + + UNUSED(argc); + UNUSED(argv); + + sr = srunner_create(suite_create("Test suite for libnslog")); + + nslog_basic_suite(sr); + + srunner_set_fork_status(sr, CK_FORK); + srunner_run_all(sr, CK_ENV); + number_failed = srunner_ntests_failed(sr); + + srunner_free(sr); + + return (number_failed == 0) ? EXIT_SUCCESS : EXIT_FAILURE; +} -- cgit v1.2.3