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

- removed old stats file

parent 87920a48
No related branches found
No related tags found
No related merge requests found
<?php
//return the test server stats
//NOTE: only post is allowed!!
$config = require './bootstrap.php';
#requires some helper function to e.g. create / delete dirs, handle output...
require_once './constants.php';
$response = array(
"workingDirFullPath" => $config["workingDirFullPath"],
"hardGlobalTimeoutInMs" => $config["hardGlobalTimeoutInMs"],
"maxParallelTests" => $config["maxParallelTests"],
"maxNumberOfTestsWithOneRequest" => $config["maxNumberOfTestsWithOneRequest"],
//"runner" => $config["runner"], //maybe not needed
"maxLinesToRead" => $config["maxLinesToRead"],
"maxErrLinesToRead" => $config["maxErrLinesToRead"],
"maxLinesToWrite" => $config["maxLinesToWrite"],
"showTestRunnerDebugOutput" => $config["showTestRunnerDebugOutput"],
"dbServer" => $config["dbServer"],
"dbName" => $config["dbName"],
"useConfigFromDb" => $config["useConfigFromDb"],
"dbConfigServer" => $config["dbConfigServer"],
"dbConfigName" => $config["dbConfigName"],
"environmentVars" => $config["environmentVars"],
);
if ($isDebug) {
debug(json_encode($respone));
}
output($status_code_Ok, "", $response);
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