You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have little understanding about PHP, but here's my hacky workaround:
list($error, $stdout, $stderr) = $future->resolve();
if ($error <> 0) {
$msg = "not ok 0 - Unit test returned non-zero exit\n";
echo$msg;
return$this->parseOutput($msg);
}