summaryrefslogtreecommitdiffstats
path: root/Tests
diff options
context:
space:
mode:
authortailor <dag@janrain.com>2008-06-02 19:48:34 +0000
committertailor <dag@janrain.com>2008-06-02 19:48:34 +0000
commitc853080ea7c93efdcf92c96e47ffe9bb91ae027c (patch)
tree30238e0c32394902720fa994e4a1a83923da3844 /Tests
parent93ef975c4065fa12c2c6c59f8233a9f70a00a456 (diff)
downloadphp-openid-c853080ea7c93efdcf92c96e47ffe9bb91ae027c.zip
php-openid-c853080ea7c93efdcf92c96e47ffe9bb91ae027c.tar.gz
php-openid-c853080ea7c93efdcf92c96e47ffe9bb91ae027c.tar.bz2
[project @ TestDriver.php: make global_include_once tell you about failures]
Diffstat (limited to 'Tests')
-rw-r--r--Tests/TestDriver.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/Tests/TestDriver.php b/Tests/TestDriver.php
index b0e8323..2aa1c98 100644
--- a/Tests/TestDriver.php
+++ b/Tests/TestDriver.php
@@ -98,8 +98,9 @@ function loadTests($test_dir, $test_names)
function global_require_once($name)
{
- $f = @include_once $name;
+ $f = include_once $name;
if (!$f) {
+ print("global require once skipping $name\n");
return false;
}
foreach (get_defined_vars() as $k => $v) {