From: Anatol Belski Date: Fri, 18 Nov 2016 01:23:17 +0000 (+0100) Subject: extend skipif X-Git-Tag: php-7.2.0alpha1~892^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b2b63ce993f71ccb66e0cbac5715c3186a853f8c;p=php 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. --- 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--