From cd1e69e13d8dc1df57b5f371edc3f23ceb9bafc1 Mon Sep 17 00:00:00 2001 From: Mitya Selivanov <0x7fffff@guattari.ru> Date: Mon, 8 Aug 2022 02:50:03 +0400 Subject: Add tests --- source/test/programs/too_many_tests.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 source/test/programs/too_many_tests.c (limited to 'source/test/programs/too_many_tests.c') diff --git a/source/test/programs/too_many_tests.c b/source/test/programs/too_many_tests.c new file mode 100644 index 0000000..9893e84 --- /dev/null +++ b/source/test/programs/too_many_tests.c @@ -0,0 +1,13 @@ +#include "../../kit_test/test.h" + +void bar(int index, kit_test_report_fn report) { } + +int main(int argc, char **argv) { + for (int i = 0; i <= KIT_TESTS_SIZE_LIMIT; i++) + test_register("foo", bar); + + if (run_tests(argc, argv) != 1) + return 1; + + return 0; +} -- cgit v1.2.3