sniper Thu Mar 31 14:43:48 2005 EDT
Modified files:
/php-src/pear/tests pear_config.phpt pear_config_1.1.phpt
pear_registry.phpt pear_registry_1.1.phpt
Log:
fix some skip conditions..
http://cvs.php.net/diff.php/php-src/pear/tests/pear_config.phpt?r1=1.19&r2=1.20&ty=u
Index: php-src/pear/tests/pear_config.phpt
diff -u php-src/pear/tests/pear_config.phpt:1.19
php-src/pear/tests/pear_config.phpt:1.20
--- php-src/pear/tests/pear_config.phpt:1.19 Mon Mar 28 11:38:59 2005
+++ php-src/pear/tests/pear_config.phpt Thu Mar 31 14:43:48 2005
@@ -4,6 +4,7 @@
<?php
if (!getenv('PHP_PEAR_RUNTESTS')) {
echo 'skip';
+ exit();
}
include 'PEAR/Config.php';
$pv = phpversion() . '';
@@ -300,4 +301,4 @@
umask: Unix file mask
username: PEAR username (for maintainers)
verbose: Debug Log Level
-done
\ No newline at end of file
+done
http://cvs.php.net/diff.php/php-src/pear/tests/pear_config_1.1.phpt?r1=1.3&r2=1.4&ty=u
Index: php-src/pear/tests/pear_config_1.1.phpt
diff -u php-src/pear/tests/pear_config_1.1.phpt:1.3
php-src/pear/tests/pear_config_1.1.phpt:1.4
--- php-src/pear/tests/pear_config_1.1.phpt:1.3 Mon Mar 28 11:38:59 2005
+++ php-src/pear/tests/pear_config_1.1.phpt Thu Mar 31 14:43:48 2005
@@ -4,6 +4,7 @@
<?php
if (!getenv('PHP_PEAR_RUNTESTS')) {
echo 'skip';
+ exit();
}
include_once 'PEAR/Config.php';
$pv = phpversion() . '';
@@ -390,4 +391,4 @@
umask: Unix file mask
username: PEAR username (for maintainers)
verbose: Debug Log Level
-done
\ No newline at end of file
+done
http://cvs.php.net/diff.php/php-src/pear/tests/pear_registry.phpt?r1=1.12&r2=1.13&ty=u
Index: php-src/pear/tests/pear_registry.phpt
diff -u php-src/pear/tests/pear_registry.phpt:1.12
php-src/pear/tests/pear_registry.phpt:1.13
--- php-src/pear/tests/pear_registry.phpt:1.12 Tue Jun 1 10:29:59 2004
+++ php-src/pear/tests/pear_registry.phpt Thu Mar 31 14:43:48 2005
@@ -4,6 +4,7 @@
<?php
if (!getenv('PHP_PEAR_RUNTESTS')) {
echo 'skip';
+ exit();
}
$statedir = dirname(__FILE__) . DIRECTORY_SEPARATOR . 'registry_tester';
if (file_exists($statedir)) {
http://cvs.php.net/diff.php/php-src/pear/tests/pear_registry_1.1.phpt?r1=1.4&r2=1.5&ty=u
Index: php-src/pear/tests/pear_registry_1.1.phpt
diff -u php-src/pear/tests/pear_registry_1.1.phpt:1.4
php-src/pear/tests/pear_registry_1.1.phpt:1.5
--- php-src/pear/tests/pear_registry_1.1.phpt:1.4 Mon Mar 28 11:38:59 2005
+++ php-src/pear/tests/pear_registry_1.1.phpt Thu Mar 31 14:43:48 2005
@@ -4,6 +4,7 @@
<?php
if (!getenv('PHP_PEAR_RUNTESTS')) {
echo 'skip';
+ exit();
}
$statedir = dirname(__FILE__) . DIRECTORY_SEPARATOR . 'registry_tester';
if (file_exists($statedir)) {
@@ -15,6 +16,7 @@
$av = $pv{0} == '4' ? 'apiversion' : 'apiVersion';
if (!in_array($av, get_class_methods('PEAR_Registry'))) {
echo 'skip';
+ exit();
}
if (PEAR_Registry::apiVersion() != '1.1') {
echo 'skip';
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php