diff options
author | Kyle Edwards <kyle.edwards@kitware.com> | 2020-09-28 16:08:28 (GMT) |
---|---|---|
committer | Kyle Edwards <kyle.edwards@kitware.com> | 2020-10-05 13:49:59 (GMT) |
commit | 8682d1b7b262258b779cba66a0e6e76f6617d588 (patch) | |
tree | 09525b793fb9a7ba9643c330a1920ea060cc4b51 /Tests | |
parent | b1898bf97570b2887f7398105231ff72adb1564d (diff) | |
download | CMake-8682d1b7b262258b779cba66a0e6e76f6617d588.zip CMake-8682d1b7b262258b779cba66a0e6e76f6617d588.tar.gz CMake-8682d1b7b262258b779cba66a0e6e76f6617d588.tar.bz2 |
CMake GUI Tests: Increase default sleep time
Diffstat (limited to 'Tests')
-rw-r--r-- | Tests/CMakeGUI/CMakeGUITest.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/CMakeGUI/CMakeGUITest.cxx b/Tests/CMakeGUI/CMakeGUITest.cxx index 80ea08d..25a92a5 100644 --- a/Tests/CMakeGUI/CMakeGUITest.cxx +++ b/Tests/CMakeGUI/CMakeGUITest.cxx @@ -19,7 +19,7 @@ #include "FirstConfigure.h" namespace { -void loopSleep(int msecs = 100) +void loopSleep(int msecs = 500) { QEventLoop loop; QTimer::singleShot(msecs, &loop, &QEventLoop::quit); |