diff options
author | Greg Beaver <cellog@php.net> | 2003-11-29 19:43:05 +0000 |
---|---|---|
committer | Greg Beaver <cellog@php.net> | 2003-11-29 19:43:05 +0000 |
commit | e39e452e305677ebadd484b1e7a4555e3cdb72e0 (patch) | |
tree | 04677efd4aa9502060f94814a07b1ef9bcdabf2f /pear/tests/pear_system.phpt | |
parent | 24409dc035553a408291a1bc221b0e9ab86b5755 (diff) | |
download | php-git-e39e452e305677ebadd484b1e7a4555e3cdb72e0.tar.gz |
add in environment variable for easy non-skipping
Diffstat (limited to 'pear/tests/pear_system.phpt')
-rw-r--r-- | pear/tests/pear_system.phpt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/pear/tests/pear_system.phpt b/pear/tests/pear_system.phpt index 64f3d1143e..854ac20756 100644 --- a/pear/tests/pear_system.phpt +++ b/pear/tests/pear_system.phpt @@ -1,7 +1,11 @@ --TEST-- System commands tests --SKIPIF-- -skip +<?php +if (!getenv('PHP_PEAR_RUNTESTS')) { + echo 'skip'; +} +?> --FILE-- <?php error_reporting(E_ALL); |