diff options
author | Remi Collet <remi@php.net> | 2019-06-20 11:58:32 +0200 |
---|---|---|
committer | Christoph M. Becker <cmbecker69@gmx.de> | 2019-06-20 12:24:16 +0200 |
commit | 0e7490f49e2d1a55f86927cdf5818cacea4e220b (patch) | |
tree | c5b01496b5185598439bd80efd6abab9ad3bf6b8 | |
parent | 4f40d81b8d32575d4ddf30109eb05d2b093b6301 (diff) | |
download | php-git-0e7490f49e2d1a55f86927cdf5818cacea4e220b.tar.gz |
fix test for Windows and for parallel run
(cherry picked from commit d8202bf9177cdbcb9b87586580dbcd6bb94f0de4)
-rw-r--r-- | ext/opcache/tests/bug78185.phpt | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/ext/opcache/tests/bug78185.phpt b/ext/opcache/tests/bug78185.phpt index 4be8431641..1723a16474 100644 --- a/ext/opcache/tests/bug78185.phpt +++ b/ext/opcache/tests/bug78185.phpt @@ -7,13 +7,23 @@ opcache.file_cache={PWD} opcache.file_cache_only=1 --FILE-- <?php -foreach (glob(__DIR__ . '/*/' . __DIR__ . '/*.bin') as $p) { +if (substr(PHP_OS, 0, 3) !== 'WIN') { + $pattern = __DIR__ . '/*/' . __DIR__ . '/*78185.php.bin'; +} else { + $pattern = __DIR__ . '/*/*/' . str_replace(':', '', __DIR__) . '/*78185.php.bin'; +} +foreach (glob($pattern) as $p) { var_dump($p); } ?> --CLEAN-- <?php -foreach (glob(__DIR__ . '/*/' . __DIR__ . '/*.bin') as $p) { +if (substr(PHP_OS, 0, 3) !== 'WIN') { + $pattern = __DIR__ . '/*/' . __DIR__ . '/*78185.php.bin'; +} else { + $pattern = __DIR__ . '/*/*/' . str_replace(':', '', __DIR__) . '/*78185.php.bin'; +} +foreach (glob($pattern) as $p) { unlink($p); $p = dirname($p); while(strlen($p) > strlen(__DIR__)) { |