summaryrefslogtreecommitdiff
path: root/sapi/cli/tests/002.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'sapi/cli/tests/002.phpt')
-rw-r--r--sapi/cli/tests/002.phpt5
1 files changed, 1 insertions, 4 deletions
diff --git a/sapi/cli/tests/002.phpt b/sapi/cli/tests/002.phpt
index 2be668f188..9fb2465ee4 100644
--- a/sapi/cli/tests/002.phpt
+++ b/sapi/cli/tests/002.phpt
@@ -3,16 +3,13 @@ running code with -r
--SKIPIF--
<?php
include "skipif.inc";
-if (substr(PHP_OS, 0, 3) == 'WIN') {
- die ("skip not for Windows");
-}
?>
--FILE--
<?php
$php = getenv('TEST_PHP_EXECUTABLE');
-var_dump(`$php -n -r 'var_dump("hello");'`);
+var_dump(`$php -n -r "var_dump('hello');"`);
echo "Done\n";
?>