From: Ilia Alshanetsky Date: Sun, 28 Nov 2004 20:40:16 +0000 (+0000) Subject: Save test result file inside the build directory. X-Git-Tag: RELEASE_0_2~611 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0e466665919433a92525fcf48bb1e5fd4eafb0aa;p=php Save test result file inside the build directory. --- diff --git a/run-tests.php b/run-tests.php index d6cfdca356..13e1119ef2 100755 --- a/run-tests.php +++ b/run-tests.php @@ -70,6 +70,9 @@ NO_PROC_OPEN_ERROR; exit; } +// store current directory +$CUR_DIR = getcwd(); + // change into the PHP source directory. if (getenv('TEST_PHP_SRCDIR')) { @@ -508,7 +511,7 @@ if (!getenv('NO_INTERACTION')) { $compression = 0; if ($just_save_results || !mail_qa_team($failed_tests_data, $compression, $status)) { - $output_file = 'php_test_results_' . date('Ymd_Hi') . ( $compression ? '.txt.gz' : '.txt' ); + $output_file = $CUR_DIR . '/php_test_results_' . date('Ymd_Hi') . ( $compression ? '.txt.gz' : '.txt' ); $fp = fopen($output_file, "w"); fwrite($fp, $failed_tests_data); fclose($fp);