From 47c298851bb172af1c5afd208fa62524d763f91a Mon Sep 17 00:00:00 2001 From: Brad King Date: Fri, 29 Apr 2016 11:47:35 -0400 Subject: [PATCH] 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. --- Tests/RunCMake/BuildDepends/RunCMakeTest.cmake | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Tests/RunCMake/BuildDepends/RunCMakeTest.cmake b/Tests/RunCMake/BuildDepends/RunCMakeTest.cmake index 854107056..ffd3ae178 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)