summaryrefslogtreecommitdiff
path: root/source/test/programs/too_many_tests.c
blob: 9893e84eb1303235decdfce0db80cf4b2c41d5bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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;
}