summaryrefslogtreecommitdiffstats
path: root/Tests
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2016-04-29 15:47:35 (GMT)
committerBrad King <brad.king@kitware.com>2016-04-29 15:47:35 (GMT)
commit47c298851bb172af1c5afd208fa62524d763f91a (patch)
tree94563dc21f72ae1dbf4bb9cbc16f850a516689fc /Tests
parent26790ad93ba80f109c9033525c2ff5ac08d883bb (diff)
downloadCMake-47c298851bb172af1c5afd208fa62524d763f91a.zip
CMake-47c298851bb172af1c5afd208fa62524d763f91a.tar.gz
CMake-47c298851bb172af1c5afd208fa62524d763f91a.tar.bz2
Tests: Fix RunCMake.BuildDepends filesystem delay for Watcom WMake
Our 1.125s delay does not seem to be long enough to be reliable with the Watcom `wmake` tool. Use a longer delay for Watcom.
Diffstat (limited to 'Tests')
-rw-r--r--Tests/RunCMake/BuildDepends/RunCMakeTest.cmake3
1 files changed, 2 insertions, 1 deletions
diff --git a/Tests/RunCMake/BuildDepends/RunCMakeTest.cmake b/Tests/RunCMake/BuildDepends/RunCMakeTest.cmake
index 8541070..ffd3ae1 100644
--- a/Tests/RunCMake/BuildDepends/RunCMakeTest.cmake
+++ b/Tests/RunCMake/BuildDepends/RunCMakeTest.cmake
@@ -1,6 +1,7 @@
include(RunCMake)
-if(RunCMake_GENERATOR STREQUAL "Borland Makefiles")
+if(RunCMake_GENERATOR STREQUAL "Borland Makefiles" OR
+ RunCMake_GENERATOR STREQUAL "Watcom WMake")
set(fs_delay 3)
else()
set(fs_delay 1.125)