summaryrefslogtreecommitdiff
path: root/sapi/cli/tests/argv_mb_bug77111.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'sapi/cli/tests/argv_mb_bug77111.phpt')
-rw-r--r--sapi/cli/tests/argv_mb_bug77111.phpt8
1 files changed, 3 insertions, 5 deletions
diff --git a/sapi/cli/tests/argv_mb_bug77111.phpt b/sapi/cli/tests/argv_mb_bug77111.phpt
index 45913b841f..0ed6204b89 100644
--- a/sapi/cli/tests/argv_mb_bug77111.phpt
+++ b/sapi/cli/tests/argv_mb_bug77111.phpt
@@ -5,12 +5,12 @@ Bug #77111 php-win.exe corrupts unicode symbols from cli parameters
include "skipif.inc";
if (strtoupper(substr(PHP_OS, 0, 3)) !== 'WIN') {
- die("skip this test is for Windows platforms only");
+ die("skip this test is for Windows platforms only");
}
$php = dirname(getenv('TEST_PHP_EXECUTABLE')) . DIRECTORY_SEPARATOR . "php-win.exe";
if (!file_exists($php)) {
- die("skip php-win.exe doesn't exist");
+ die("skip php-win.exe doesn't exist");
}
?>
@@ -28,7 +28,6 @@ file_put_contents($argv_fl, "<?php file_put_contents('$out_fl', implode(' ', arr
var_dump(file_get_contents($out_fl));
?>
-==DONE==
--CLEAN--
<?php
$out_fl = __DIR__ . "\\argv_bug77111.txt";
@@ -36,7 +35,6 @@ $argv_fl = __DIR__ . DIRECTORY_SEPARATOR . "argv_test.php";
unlink($argv_fl);
unlink($out_fl);
?>
---EXPECTF--
+--EXPECT--
string(57) "Ästhetik Æstetik Esthétique Estética Эстетика"
-==DONE==