From: Yasuo Ohgaki Date: Mon, 18 Mar 2002 06:03:53 +0000 (+0000) Subject: Use common.inc instead of common.php for ease of use (rm -f *.php for failed X-Git-Tag: php-4.3.0dev-ZendEngine2-Preview1~1283 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9d2edd0fd861595e73393e866b887f894f74ec9e;p=php Use common.inc instead of common.php for ease of use (rm -f *.php for failed test files) --- diff --git a/ext/mbstring/tests/002.inc b/ext/mbstring/tests/002.inc index 241b78393e..6b16ca8d46 100644 --- a/ext/mbstring/tests/002.inc +++ b/ext/mbstring/tests/002.inc @@ -2,7 +2,7 @@ // TODO: //$debug = true; ini_set('include_path','.'); -include_once('common.php'); +include_once('common.inc'); // EUC-JP $r = mb_internal_encoding('EUC-JP'); diff --git a/ext/mbstring/tests/003.inc b/ext/mbstring/tests/003.inc index 944058cae3..e351085845 100644 --- a/ext/mbstring/tests/003.inc +++ b/ext/mbstring/tests/003.inc @@ -2,7 +2,7 @@ // TODO: This is not a real test.... Need to change so that it does real testing //$debug = true; ini_set('include_path','.'); -include_once('common.php'); +include_once('common.inc'); $ini = ini_get('mbstring.http_input'); diff --git a/ext/mbstring/tests/004.inc b/ext/mbstring/tests/004.inc index 271a348b58..421bb5a681 100644 --- a/ext/mbstring/tests/004.inc +++ b/ext/mbstring/tests/004.inc @@ -2,7 +2,7 @@ //TODO: Add more encoding. Wrong paramter type test. //$debug = true; ini_set('include_path','.'); -include_once('common.php'); +include_once('common.inc'); // Set HTTP output encoding to ASCII $r = mb_http_output('ASCII'); diff --git a/ext/mbstring/tests/005.inc b/ext/mbstring/tests/005.inc index 2aaaf8866d..1ffcafd011 100644 --- a/ext/mbstring/tests/005.inc +++ b/ext/mbstring/tests/005.inc @@ -1,7 +1,7 @@