diff options
author | Steph Fox <sfox@php.net> | 2008-06-20 14:42:04 +0000 |
---|---|---|
committer | Steph Fox <sfox@php.net> | 2008-06-20 14:42:04 +0000 |
commit | c88e99d9eab9d6ac10ea5072e60e75752de3077b (patch) | |
tree | a7287490df567d3fe3d53ea225533e5ccf312187 | |
parent | 6ef7aef1d4d17e2fa211b65cef84b89a9721aa22 (diff) | |
download | php-git-c88e99d9eab9d6ac10ea5072e60e75752de3077b.tar.gz |
- Use SKIP_SLOW_TESTS where it's most useful
-rw-r--r-- | ext/phar/tests/bug13727.phpt | 1 | ||||
-rw-r--r-- | ext/phar/tests/bug45218_SLOWTEST.phpt | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/ext/phar/tests/bug13727.phpt b/ext/phar/tests/bug13727.phpt index cc7fc19a6c..e742b955d7 100644 --- a/ext/phar/tests/bug13727.phpt +++ b/ext/phar/tests/bug13727.phpt @@ -2,6 +2,7 @@ Phar: SLOW TEST bug #13727: "Number of files in the Phar" limited to 2042 --SKIPIF-- <?php if (!extension_loaded("phar")) die("skip"); ?> +<?php if (getenv('SKIP_SLOW_TESTS')) die('skip'); ?> --INI-- phar.require_hash=0 phar.readonly=0 diff --git a/ext/phar/tests/bug45218_SLOWTEST.phpt b/ext/phar/tests/bug45218_SLOWTEST.phpt index 66c06cdab0..d6b20a2823 100644 --- a/ext/phar/tests/bug45218_SLOWTEST.phpt +++ b/ext/phar/tests/bug45218_SLOWTEST.phpt @@ -2,6 +2,7 @@ Phar::buildFromIterator() iterator, too many files for open file handles (Bug #45218) --SKIPIF-- <?php if (!extension_loaded("phar")) die("skip"); ?> +<?php if (getenv('SKIP_SLOW_TESTS')) die('skip'); ?> --INI-- phar.require_hash=0 phar.readonly=0 |