You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
323 B
11 lines
323 B
#!cmake -P
|
|
file(WRITE split_test_helper.h "")
|
|
foreach(i RANGE 1 999)
|
|
file(APPEND split_test_helper.h
|
|
"#if defined(EIGEN_TEST_PART_${i}) || defined(EIGEN_TEST_PART_ALL)\n"
|
|
"#define CALL_SUBTEST_${i}(FUNC) CALL_SUBTEST(FUNC)\n"
|
|
"#else\n"
|
|
"#define CALL_SUBTEST_${i}(FUNC)\n"
|
|
"#endif\n\n"
|
|
)
|
|
endforeach() |