Skip to content
Snippets Groups Projects
Commit 17157595 authored by Janis Daniel Dähne's avatar Janis Daniel Dähne
Browse files

- fixed issue where tracelog worker did not know about timings logger

- fixed missing argument
parent 2ae897c3
No related branches found
No related tags found
No related merge requests found
......@@ -534,7 +534,8 @@ foreach ($testCases as $test) {
$result = create_test_result($status_code_ArgumentInvalidOrMissing, "argument '" . $s_test_diskSpaceLimitInKb . "' missing", $testId,
FALSE, FALSE, NULL,
NULL, NULL, NULL,
100, '', $versionString,
100, '',
NULL, NULL,
false, $arg_characterLimitProtocol
);
array_push($testResults, $result);
......@@ -652,7 +653,7 @@ foreach ($testCases as $test) {
goto handleCleanup;
}
addToDebugTimings("before blackbox/justrun test");
addToDebugTimings("after blackbox/justrun test");
}
}
......
......@@ -3,7 +3,7 @@
# variables
//use this to know which version we published
$versionString = '2.6.2';
$versionString = '2.6.3';
$rootDirNameToUseString = 'work';
$isDebug = false; //logs debug to STDOUT
......
......@@ -19,6 +19,8 @@ require_once __DIR__.'/../constants.php';
require_once __DIR__.'/../transactionHelper.php';
require_once __DIR__.'/../helpers.php';
$entityBody = file_get_contents('php://input');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment