@@ -19,7 +19,7 @@ namespace testing {
19
19
bool Test::testProcessKilled (testutils::FunctionCaller *Func, int Signal,
20
20
const char *LHSStr, const char *RHSStr,
21
21
internal::Location Loc) {
22
- testutils::ProcessStatus Result = testutils::invoke_in_subprocess (Func, 500 );
22
+ testutils::ProcessStatus Result = testutils::invoke_in_subprocess (Func, 1000 );
23
23
24
24
if (const char *error = Result.get_error ()) {
25
25
Ctx->markFail ();
@@ -31,7 +31,7 @@ bool Test::testProcessKilled(testutils::FunctionCaller *Func, int Signal,
31
31
if (Result.timed_out ()) {
32
32
Ctx->markFail ();
33
33
tlog << Loc;
34
- tlog << " Process timed out after " << 500 << " milliseconds.\n " ;
34
+ tlog << " Process timed out after " << 1000 << " milliseconds.\n " ;
35
35
return false ;
36
36
}
37
37
@@ -62,7 +62,7 @@ bool Test::testProcessKilled(testutils::FunctionCaller *Func, int Signal,
62
62
bool Test::testProcessExits (testutils::FunctionCaller *Func, int ExitCode,
63
63
const char *LHSStr, const char *RHSStr,
64
64
internal::Location Loc) {
65
- testutils::ProcessStatus Result = testutils::invoke_in_subprocess (Func, 500 );
65
+ testutils::ProcessStatus Result = testutils::invoke_in_subprocess (Func, 1000 );
66
66
67
67
if (const char *error = Result.get_error ()) {
68
68
Ctx->markFail ();
@@ -74,7 +74,7 @@ bool Test::testProcessExits(testutils::FunctionCaller *Func, int ExitCode,
74
74
if (Result.timed_out ()) {
75
75
Ctx->markFail ();
76
76
tlog << Loc;
77
- tlog << " Process timed out after " << 500 << " milliseconds.\n " ;
77
+ tlog << " Process timed out after " << 1000 << " milliseconds.\n " ;
78
78
return false ;
79
79
}
80
80
0 commit comments