summaryrefslogtreecommitdiffstats
path: root/pts-core/functions/pts-functions-run.php
diff options
context:
space:
mode:
authorMichael Larabel <michael@phx-laptop.(none)>2008-10-26 13:14:19 -0400
committerMichael Larabel <michael@phx-laptop.(none)>2008-10-26 13:14:19 -0400
commit6ce3ea3d071a1ed56337883a5670ef848c30c558 (patch)
tree89206b8c673e43eff2f1a497e62c95a7eb196d9c /pts-core/functions/pts-functions-run.php
parentd45f32582f4b7bc02bb8cbc191e07d8e4f96aa33 (diff)
downloadphoronix-test-suite-upstream-6ce3ea3d071a1ed56337883a5670ef848c30c558.tar.gz
phoronix-test-suite-upstream-6ce3ea3d071a1ed56337883a5670ef848c30c558.tar.xz
phoronix-test-suite-upstream-6ce3ea3d071a1ed56337883a5670ef848c30c558.zip
pts-core: Move timer-start.sh and timer-stop.sh from pts-core/scripts/
to pts-core/test-libraries/
Diffstat (limited to 'pts-core/functions/pts-functions-run.php')
-rw-r--r--pts-core/functions/pts-functions-run.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/pts-core/functions/pts-functions-run.php b/pts-core/functions/pts-functions-run.php
index ac17b94..fb0288f 100644
--- a/pts-core/functions/pts-functions-run.php
+++ b/pts-core/functions/pts-functions-run.php
@@ -473,8 +473,8 @@ function pts_run_test($test_identifier, $extra_arguments = "", $arguments_descri
for($i = 0; $i < $times_to_run; $i++)
{
$benchmark_log_file = TEST_ENV_DIR . $test_identifier . "/" . $test_identifier . "-" . THIS_RUN_TIME . "-" . ($i + 1) . ".log";
- $start_timer = PTS_DIR . "pts-core/scripts/timer-start.sh";
- $stop_timer = PTS_DIR . "pts-core/scripts/timer-stop.sh";
+ $start_timer = PTS_DIR . "pts-core/test-libraries/timer-start.sh";
+ $stop_timer = PTS_DIR . "pts-core/test-libraries/timer-stop.sh";
$test_extra_runtime_variables = array_merge($extra_runtime_variables, array("LOG_FILE" => $benchmark_log_file, "TIMER_START" => $start_timer, "TIMER_STOP" => $stop_timer, "PHP_BIN" => PHP_BIN));
echo pts_string_header($test_title . " (Run " . ($i + 1) . " of " . $times_to_run . ")");