diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2012-07-02 21:31:03 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2012-07-02 21:31:03 +0000 |
commit | 33219d48c2e31ec5541fbdccc10cc43147183122 (patch) | |
tree | 1cc8862a5ea9021fe2dbdc95839ebac8dfd6f4bd /test | |
parent | 9eb4f8a3e665e0fe37509e632b97877b29b3c106 (diff) | |
download | external_llvm-33219d48c2e31ec5541fbdccc10cc43147183122.zip external_llvm-33219d48c2e31ec5541fbdccc10cc43147183122.tar.gz external_llvm-33219d48c2e31ec5541fbdccc10cc43147183122.tar.bz2 |
Revert r159588, and apply a more principled fix. Place the fix for this
in the abstraction for lit test suites so that the various other layers
of abstraction pick up the same behavioral fix, and so that we still get
a complete list of dependencies for the 'check-all' target.
This should fix the follow-on issues of the same nature with various
other build targets, including Clang targets. Sorry for the churn, and
again thanks to Matt for testing and breaking this more thoroughly.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@159593 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/CMakeLists.txt | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index ea7b7ab..651d024 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -11,16 +11,14 @@ add_lit_testsuite(check-llvm "Running the LLVM regression tests" ${CMAKE_CURRENT_BINARY_DIR} PARAMS llvm_site_config=${CMAKE_CURRENT_BINARY_DIR}/lit.site.cfg llvm_unit_site_config=${CMAKE_CURRENT_BINARY_DIR}/Unit/lit.site.cfg - DEPENDS BugpointPasses LLVMHello + DEPENDS UnitTests + BugpointPasses LLVMHello llc lli llvm-ar llvm-as llvm-dis llvm-extract llvm-dwarfdump llvm-link llvm-mc llvm-nm llvm-objdump llvm-readobj macho-dump opt FileCheck count not ) set_target_properties(check-llvm PROPERTIES FOLDER "Tests") -# Note, this is kept here rather than in the DEPENDS above because of bugs in -# some CMake versions that mishandle the dependency otherwise. -add_dependencies(check-llvm UnitTests) # Setup a legacy alias for 'check-llvm'. This will likely change to be an # alias for 'check-all' at some point in the future. |