Harness warns about tests that request timeout when it's not

available.
This commit is contained in:
Markus Kauppila 2011-07-18 14:41:01 +03:00
parent 9db859c159
commit 0bcc47f4b6
2 changed files with 4 additions and 8 deletions

View file

@ -632,6 +632,9 @@ ExecuteTest(TestCase *testItem) {
int retVal = -1;
if(execute_inproc) {
if(testItem->timeout > 0) {
Log("Test asked for timeout which is not supported.", time(0));
}
retVal = RunTest(testItem);
} else {
int childpid = fork();