summaryrefslogtreecommitdiff
path: root/source/test/programs/too_many_assertions.c
blob: 846970f4766e8da8a96c165db7e8ad96c19a01da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "../../kit_test/test.h"

TEST("foo") {
  for (int 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;
}