rrichards Sat Jul 22 13:13:18 2006 UTC
Modified files:
/php-src/win32/build Makefile
Log:
enable native and unicode tests
add ntest and utest build targets
http://cvs.php.net/viewvc.cgi/php-src/win32/build/Makefile?r1=1.37&r2=1.38&diff_format=u
Index: php-src/win32/build/Makefile
diff -u php-src/win32/build/Makefile:1.37 php-src/win32/build/Makefile:1.38
--- php-src/win32/build/Makefile:1.37 Mon Apr 10 15:09:15 2006
+++ php-src/win32/build/Makefile Sat Jul 22 13:13:18 2006
@@ -14,7 +14,7 @@
# | Author: Wez Furlong <[EMAIL PROTECTED]> |
# +----------------------------------------------------------------------+
#
-# $Id: Makefile,v 1.37 2006/04/10 15:09:15 sniper Exp $
+# $Id: Makefile,v 1.38 2006/07/22 13:13:18 rrichards Exp $
# This is the makefile template for the win32 build
CC="$(CL)"
@@ -90,7 +90,19 @@
test:
<<test_suite_uses_lame_env_vars.bat
set TEST_PHP_EXECUTABLE=$(BUILD_DIR)\php.exe
-$(BUILD_DIR)\php.exe -d open_basedir= -d output_buffering=0 run-tests.php
$(TESTS)
+$(BUILD_DIR)\php.exe -d open_basedir= -d output_buffering=0 run-tests.php -U
$(TESTS)
+<<NOKEEP
+
+utest:
+ <<test_suite_uses_lame_env_vars.bat
+set TEST_PHP_EXECUTABLE=$(BUILD_DIR)\php.exe
+$(BUILD_DIR)\php.exe -d open_basedir= -d output_buffering=0 run-tests.php -u
$(TESTS)
+<<NOKEEP
+
+ntest:
+ <<test_suite_uses_lame_env_vars.bat
+set TEST_PHP_EXECUTABLE=$(BUILD_DIR)\php.exe
+$(BUILD_DIR)\php.exe -d open_basedir= -d output_buffering=0 run-tests.php -N
$(TESTS)
<<NOKEEP
build-snap: generated_files
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php