File tree Expand file tree Collapse file tree 3 files changed +24
-7
lines changed Expand file tree Collapse file tree 3 files changed +24
-7
lines changed Original file line number Diff line number Diff line change @@ -9,11 +9,6 @@ set(ENZYME_TEST_DEPS LLVMEnzyme-${LLVM_VERSION_MAJOR} BCPass-${LLVM_VERSION_MAJO
99
1010add_subdirectory (ActivityAnalysis)
1111add_subdirectory (TypeAnalysis)
12- add_subdirectory (Enzyme/ReverseMode)
13- add_subdirectory (Enzyme/ForwardMode)
14- add_subdirectory (Integration/ReverseMode)
15- add_subdirectory (Integration/ForwardMode)
12+ add_subdirectory (Enzyme)
13+ add_subdirectory (Integration)
1614add_subdirectory (BCLoader)
17-
18- add_custom_target (check-enzyme DEPENDS check-enzyme-reverse check-enzyme-forward)
19- add_custom_target (check-enzyme-integration DEPENDS check-enzyme-integration-reverse check-enzyme-integration-forward)
Original file line number Diff line number Diff line change 1+ add_subdirectory (ReverseMode)
2+ add_subdirectory (ForwardMode)
3+
4+ # Run regression and unit tests
5+ add_lit_testsuite(check-enzyme "Running enzyme regression tests"
6+ ${CMAKE_CURRENT_BINARY_DIR}
7+ DEPENDS ${ENZYME_TEST_DEPS}
8+ ARGS -v
9+ )
10+
11+ set_target_properties (check-enzyme PROPERTIES FOLDER "Tests" )
Original file line number Diff line number Diff line change 1+ add_subdirectory (ForwardMode)
2+ add_subdirectory (ReverseMode)
3+
4+ # Run regression and unit tests
5+ add_lit_testsuite(check-enzyme-integration "Running enzyme integration tests"
6+ ${CMAKE_CURRENT_BINARY_DIR}
7+ DEPENDS ${ENZYME_TEST_DEPS} ClangEnzyme-${LLVM_VERSION_MAJOR}
8+ ARGS -v
9+ )
10+
11+ set_target_properties (check-enzyme-integration PROPERTIES FOLDER "Tests" )
You can’t perform that action at this time.
0 commit comments