diff options
Diffstat (limited to 'contrib/ctest')
-rw-r--r-- | contrib/ctest/run-tests.vbs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/contrib/ctest/run-tests.vbs b/contrib/ctest/run-tests.vbs index 66e187b..03e2774 100644 --- a/contrib/ctest/run-tests.vbs +++ b/contrib/ctest/run-tests.vbs @@ -79,10 +79,9 @@ if (CTEST_SUBMIT_TYPE = "Continuous") Then End If shell.CurrentDirectory = TEST_DIR -Set exec = shell.Exec("CMD /S /C ctest -VV --timeout 100 -S " + TESTFILE + " 2>&1") +Set exec = shell.Exec("CMD /S /K ctest -VV --timeout 100 -S " + TESTFILE + " 2>&1") Do While exec.Status = 0 WScript.Sleep 10 WScript.StdOut.Write(exec.StdOut.ReadLine() & vbCRLF) ' WScript.StdErr.Write(exec.StdErr.ReadLine()) Loop -WScript.Sleep 1000000
\ No newline at end of file |