mirror of
https://github.com/php/php-src.git
synced 2024-11-25 02:44:58 +08:00
20 lines
479 B
Makefile
20 lines
479 B
Makefile
#
|
|
# Win32 Makefile to run the PHP unit tests.
|
|
#
|
|
# TEST_PHP_EXECUTABLE
|
|
# Required - must point to the PHP executable to test.
|
|
#
|
|
# TEST_PHP_ERROR_STYLE
|
|
# Optional - specifies error format to output so IDE can jump to test source and log.
|
|
# Values: MSVC (Microsoft Visual C++), Emacs
|
|
#
|
|
|
|
all : run-tests
|
|
|
|
BIN=Debug_TS
|
|
|
|
run-tests :
|
|
set TEST_PHP_EXECUTABLE=$(BIN)\php-cgi.exe
|
|
set TEST_PHP_ERROR_STYLE=MSVC
|
|
cd .. && $(BIN)\php-cgi.exe -c tests -f run-tests.php | tee tests.log
|