diff options
author | Marius Kintel <marius@kintel.net> | 2011-07-10 23:33:17 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2011-07-10 23:33:17 (GMT) |
commit | 0dd6c65aa15c1381d7ebecee73d5028345651ded (patch) | |
tree | fd8c74e0a0a8e1f42ffa4531f3e8c631d1573851 | |
parent | 50e59e94e25fd500ec8bcaef869da53674040ab4 (diff) |
Started adapting to reorganized testdata folders
-rw-r--r-- | tests/CMakeLists.txt | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 89198ee..c5c1104 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -165,10 +165,12 @@ endfunction() enable_testing() # Find all scad files -file(GLOB SCAD_FILES ${CMAKE_SOURCE_DIR}/../testdata/scad/*.scad) +file(GLOB MINIMAL_FILES ${CMAKE_SOURCE_DIR}/../testdata/scad/minimal/*.scad) +file(GLOB FEATURES_FILES ${CMAKE_SOURCE_DIR}/../testdata/scad/features/*.scad) +file(GLOB BUGS_FILES ${CMAKE_SOURCE_DIR}/../testdata/scad/bugs/*.scad) # Add dumptest tests to CTest -add_cmdline_test(dumptest txt ${SCAD_FILES}) +add_cmdline_test(dumptest txt ${MINIMAL_FILES}) # Add csgtexttest tests to CTest add_cmdline_test(csgtexttest txt ${SCAD_FILES}) # Add csgtermtest tests to CTest |