From bce24e14b856517e8d869dd4ca70cd88efbdaf2a Mon Sep 17 00:00:00 2001 From: David Cole Date: Fri, 31 Dec 2010 09:17:37 -0500 Subject: [PATCH] Avoid running CMake.Install test simultaneously with other tests --- Tests/CMakeInstall.cmake | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Tests/CMakeInstall.cmake b/Tests/CMakeInstall.cmake index dabc85292..5f814d91b 100644 --- a/Tests/CMakeInstall.cmake +++ b/Tests/CMakeInstall.cmake @@ -41,6 +41,9 @@ if(CMake_TEST_INSTALL) --build-noclean --build-target install) + # Avoid running this test simultaneously with other tests: + set_tests_properties(CMake.Install PROPERTIES RUN_SERIAL ON) + # TODO: Make all other tests depend on this one, and then drive them # with the installed CTest. else()