summaryrefslogtreecommitdiff
path: root/README.TESTING
diff options
context:
space:
mode:
authorYasuo Ohgaki <yohgaki@php.net>2002-03-18 06:06:00 +0000
committerYasuo Ohgaki <yohgaki@php.net>2002-03-18 06:06:00 +0000
commit3de2e94c84e1fb771bcd1cb1733ea2d3082f108d (patch)
treee423b66ee9eef59ee9678b9bb8d737364ae47fbb /README.TESTING
parent9d2edd0fd861595e73393e866b887f894f74ec9e (diff)
downloadphp-git-3de2e94c84e1fb771bcd1cb1733ea2d3082f108d.tar.gz
-c option is for path.
Diffstat (limited to 'README.TESTING')
-rw-r--r--README.TESTING8
1 files changed, 4 insertions, 4 deletions
diff --git a/README.TESTING b/README.TESTING
index 7f28e55ef1..b4b2d5c02c 100644
--- a/README.TESTING
+++ b/README.TESTING
@@ -17,7 +17,7 @@ make test
under source root. Therefore you can execute the script
as follows
-./sapi/cli/php -c php.ini-dist run-tests.php [ext/some_extension_name]
+./sapi/cli/php -c /path/to/php.ini/ run-tests.php [ext/some_extension_name]
@@ -42,7 +42,7 @@ you would like to test with other configuration file, user
"run-tests.php" script.
Example:
-./sapi/cli/php -c ./your_php.ini ext/standard
+./sapi/cli/php -c /path/to/php.ini/ ext/standard
If you use php.ini other than php.ini-dist, you may see more failed
tests.
@@ -58,7 +58,7 @@ executes it.
Tester can easily executes tests selectively with as follows.
Example:
-./sapi/cli/php -c php.ini-dist run-tests.php ext/mbstring
+./sapi/cli/php -c /path/to/php.ini/ run-tests.php ext/mbstring
[Test results]
@@ -146,7 +146,7 @@ However, it is recommended to use other files for ease of writing
test script. For instance, you can execute test script under
ext/iconv as follows:
-./sapi/cli/php -c /etc/php.ini-dist ext/iconv
+./sapi/cli/php -c /path/to/php.ini/ ext/iconv
[How to help us]