From: Christoph M. Becker Date: Wed, 20 May 2015 18:23:21 +0000 (+0200) Subject: added missing GLOB_BRACE support check X-Git-Tag: PRE_PHP7_NSAPI_REMOVAL~42^2~12^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=99d7852d185364bf63491c5e869101309783b8c0;p=php added missing GLOB_BRACE support check --- diff --git a/ext/standard/tests/file/glob_variation.phpt b/ext/standard/tests/file/glob_variation.phpt index 00fd6ff3ed..9d3b879379 100644 --- a/ext/standard/tests/file/glob_variation.phpt +++ b/ext/standard/tests/file/glob_variation.phpt @@ -5,6 +5,9 @@ Test glob() function: usage variations if (substr(PHP_OS, 0, 3) == 'WIN') { die('skip.. Not valid for Windows'); } +if (!defined('GLOB_BRACE')) { + die('skip this test requires GLOB_BRACE support'); +} ?> --FILE--