diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2012-07-02 21:14:06 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2012-07-02 21:14:06 +0000 |
commit | e45658cc3c47d21140ee8680fb22bf664a996fbd (patch) | |
tree | 21283ec654d2e344fcb9534e07aeec311fd4e1bf /test | |
parent | ebcaa3cd97bf48c4c56dcf9aab5e9a7df85969ed (diff) | |
download | external_llvm-e45658cc3c47d21140ee8680fb22bf664a996fbd.zip external_llvm-e45658cc3c47d21140ee8680fb22bf664a996fbd.tar.gz external_llvm-e45658cc3c47d21140ee8680fb22bf664a996fbd.tar.bz2 |
Work around a really frustrating apparant CMake bug.
No functionality changed here, except that the CMake installed by
default on Ubuntu Lucid should actually work with the makefile
generators now.
Thanks to Matt for the report and head-desking required to figure out
why it was failing.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@159588 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/CMakeLists.txt | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 651d024..ea7b7ab 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -11,14 +11,16 @@ 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 UnitTests - BugpointPasses LLVMHello + DEPENDS 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. |