From: Christoph M. Becker Date: Wed, 20 May 2015 18:23:21 +0000 (+0200) Subject: added missing GLOB_BRACE support check X-Git-Tag: php-5.5.26RC1~11 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=96629091a63ea891ac637352534e511174064605;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--