summaryrefslogtreecommitdiffstats
path: root/Tests
diff options
context:
space:
mode:
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) {