diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2009-11-04 00:13:40 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2009-11-04 00:13:40 (GMT) |
commit | 9c12894636c78ad95a78be40d5833ee17e6936d7 (patch) | |
tree | 7c5b021d0e788b8dd081989bc49648ef9b0032bc | |
parent | 2733f4f8e7c610004d417ddfff583500266c72fc (diff) | |
download | CMake-9c12894636c78ad95a78be40d5833ee17e6936d7.zip CMake-9c12894636c78ad95a78be40d5833ee17e6936d7.tar.gz CMake-9c12894636c78ad95a78be40d5833ee17e6936d7.tar.bz2 |
Add missing depend because of registry write with complex name, they can not be done in parallel.
-rw-r--r-- | Tests/CMakeLists.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Tests/CMakeLists.txt b/Tests/CMakeLists.txt index 871467f..e5b6523 100644 --- a/Tests/CMakeLists.txt +++ b/Tests/CMakeLists.txt @@ -621,6 +621,8 @@ ${CMake_BINARY_DIR}/bin/cmake -DVERSION=CVS -P ${CMake_SOURCE_DIR}/Utilities/Rel -DCMAKE_BUILD_TYPE:STRING=${CMAKE_BUILD_TYPE} --test-command complex) LIST(APPEND TEST_BUILD_DIRS "${CMake_BINARY_DIR}/Tests/ComplexOneConfig") + # because of the registry write these tests depend on each other + SET_TESTS_PROPERTIES ( complex PROPERTIES DEPENDS complexOneConfig) # This fails on VS 70 # works on Xcode and makefiles |