summaryrefslogtreecommitdiff
path: root/source/tests/too_many_assertions.c
diff options
context:
space:
mode:
Diffstat (limited to 'source/tests/too_many_assertions.c')
-rw-r--r--source/tests/too_many_assertions.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/source/tests/too_many_assertions.c b/source/tests/too_many_assertions.c
new file mode 100644
index 0000000..662207d
--- /dev/null
+++ b/source/tests/too_many_assertions.c
@@ -0,0 +1,13 @@
+#include "../kit_test/test.h"
+
+TEST("foo") {
+ int i;
+ for (i = 0; i <= KIT_TEST_ASSERTIONS_LIMIT; i++) REQUIRE(1);
+}
+
+int main(int argc, char **argv) {
+ if (run_tests(argc, argv) != 1)
+ return 1;
+
+ return 0;
+}