• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!cmake -P
2file(WRITE split_test_helper.h "")
3foreach(i RANGE 1 999)
4  file(APPEND split_test_helper.h
5    "#if defined(EIGEN_TEST_PART_${i}) || defined(EIGEN_TEST_PART_ALL)\n"
6    "#define CALL_SUBTEST_${i}(FUNC) CALL_SUBTEST(FUNC)\n"
7    "#else\n"
8    "#define CALL_SUBTEST_${i}(FUNC)\n"
9    "#endif\n\n"
10  )
11endforeach()