summaryrefslogtreecommitdiff
path: root/source/test/programs/too_many_assertions.c
diff options
context:
space:
mode:
Diffstat (limited to 'source/test/programs/too_many_assertions.c')
-rw-r--r--source/test/programs/too_many_assertions.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/test/programs/too_many_assertions.c b/source/test/programs/too_many_assertions.c
index 846970f..06b440b 100644
--- a/source/test/programs/too_many_assertions.c
+++ b/source/test/programs/too_many_assertions.c
@@ -1,7 +1,8 @@
#include "../../kit_test/test.h"
TEST("foo") {
- for (int i = 0; i <= KIT_TEST_ASSERTIONS_LIMIT; i++) REQUIRE(1);
+ int i;
+ for (i = 0; i <= KIT_TEST_ASSERTIONS_LIMIT; i++) REQUIRE(1);
}
int main(int argc, char **argv) {