From 1d1a092ee6343a4cb75bfdf9a5f950bd33809d47 Mon Sep 17 00:00:00 2001 From: Michael Wallner Date: Wed, 19 Oct 2016 06:40:34 +0000 Subject: [PATCH] tests: fix linux glob test avoid glibc bug with GLOB_BRACE|GLOB_DOOFFS; see https://sourceware.org/bugzilla/show_bug.cgi?id=20707 --- tests/glob/glob002.phpt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/glob/glob002.phpt b/tests/glob/glob002.phpt index 36edb4d..704386f 100644 --- a/tests/glob/glob002.phpt +++ b/tests/glob/glob002.phpt @@ -12,7 +12,7 @@ PHP_OS === "Linux" or die("skip - only for Linux"); 5]; -var_dump(psi\glob("*002.php{,t}", psi\GLOB_BRACE|psi\GLOB_DOOFFS, $glob)); +var_dump(psi\glob("*002.php*", psi\GLOB_DOOFFS, $glob)); var_dump($glob); ?> ===DONE=== -- 2.30.2