mirror of https://gitee.com/bigwinds/arangodb
Fix rspec timeout in Windows with disableMonitor
This commit is contained in:
parent
2fe0527d25
commit
f25baf1ecb
|
@ -646,7 +646,8 @@ function executeAndWait (cmd, args, options, valgrindTest, rootDir, circumventCo
|
||||||
instanceInfo.exitStatus = res;
|
instanceInfo.exitStatus = res;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
res = executeExternalAndWait(cmd, args, false, timeout);
|
// V8 executeExternalAndWait thinks that timeout is in ms, so *100
|
||||||
|
res = executeExternalAndWait(cmd, args, false, timeout*100);
|
||||||
instanceInfo.pid = res.pid;
|
instanceInfo.pid = res.pid;
|
||||||
instanceInfo.exitStatus = res;
|
instanceInfo.exitStatus = res;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue