summaryrefslogtreecommitdiff
path: root/sapi/cli
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2016-11-18 02:23:17 +0100
committerAnatol Belski <ab@php.net>2016-11-18 02:23:17 +0100
commitb2b63ce993f71ccb66e0cbac5715c3186a853f8c (patch)
tree9f248d01146adbb7eaea690a53888629b4dffad5 /sapi/cli
parent8806c54b00c99d9af64f475f58967f8c7bac90e2 (diff)
downloadphp-git-b2b63ce993f71ccb66e0cbac5715c3186a853f8c.tar.gz
extend skipif
This test won't pass on Windows. The main reason is that the multiline input is not really possible to create on cmd. But also, because of the single quotes. And without multiline data piping, it doesn't make sense.
Diffstat (limited to 'sapi/cli')
-rw-r--r--sapi/cli/tests/017.phpt3
1 files changed, 3 insertions, 0 deletions
diff --git a/sapi/cli/tests/017.phpt b/sapi/cli/tests/017.phpt
index efaf977db4..dbddb283a4 100644
--- a/sapi/cli/tests/017.phpt
+++ b/sapi/cli/tests/017.phpt
@@ -6,6 +6,9 @@ include "skipif.inc";
if (!extension_loaded('readline') || readline_info('done') !== NULL) {
die ("skip need readline support using libedit");
}
+if(substr(PHP_OS, 0, 3) == 'WIN' ) {
+ die('skip not for Windows');
+}
?>
--FILE--
<?php