- use the cc that was detected by ./configure when determining version

information in run-tests.php
This commit is contained in:
Jan Lehnardt 2002-10-23 17:56:42 +00:00
parent b7703551ed
commit e96e0ae002
2 changed files with 2 additions and 1 deletions

View File

@ -49,6 +49,7 @@ install-su: install-pear install-tester
test: $(SAPI_CLI_PATH) test: $(SAPI_CLI_PATH)
@TEST_PHP_EXECUTABLE=$(top_builddir)/$(SAPI_CLI_PATH) \ @TEST_PHP_EXECUTABLE=$(top_builddir)/$(SAPI_CLI_PATH) \
TEST_PHP_SRCDIR=$(top_srcdir) \ TEST_PHP_SRCDIR=$(top_srcdir) \
CC=$(CC) \
$(top_builddir)/$(SAPI_CLI_PATH) $(top_srcdir)/run-tests.php $(TESTS) $(top_builddir)/$(SAPI_CLI_PATH) $(top_srcdir)/run-tests.php $(TESTS)
clean: clean:

View File

@ -270,7 +270,7 @@ if ($sum_results['FAILED']) {
$failed_tests_data .= "Autoconf:\n". shell_exec('autoconf --version'). "\n"; $failed_tests_data .= "Autoconf:\n". shell_exec('autoconf --version'). "\n";
$failed_tests_data .= "Libtool:\n". shell_exec('libtool --version'). "\n"; $failed_tests_data .= "Libtool:\n". shell_exec('libtool --version'). "\n";
$failed_tests_data .= "Bison:\n". shell_exec('bison --version'). "\n"; $failed_tests_data .= "Bison:\n". shell_exec('bison --version'). "\n";
$failed_tests_data .= "Compiler:\n". shell_exec('cc -v'). "\n"; $failed_tests_data .= "Compiler:\n". shell_exec(getenv('CC').' -v'). "\n";
$failed_tests_data .= "\n\n"; $failed_tests_data .= "\n\n";
foreach ($GLOBALS['__PHP_FAILED_TESTS__'] as $test_info) { foreach ($GLOBALS['__PHP_FAILED_TESTS__'] as $test_info) {