aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorNathaniel Guse <nathaniel.guse@gmail.com>2013-07-03 09:31:35 -0500
committerNathaniel Guse <nathaniel.guse@gmail.com>2013-07-03 09:31:35 -0500
commitf1717412f3c222af5c3cfc0b248842ea9ec88c9f (patch)
tree7349b41053a3477a0a7fce0d3dba175d9cfdbdcb /tests
parent9652483ef49295379b28bdd842c846c0160fa1a1 (diff)
downloadforums-f1717412f3c222af5c3cfc0b248842ea9ec88c9f.tar
forums-f1717412f3c222af5c3cfc0b248842ea9ec88c9f.tar.gz
forums-f1717412f3c222af5c3cfc0b248842ea9ec88c9f.tar.bz2
forums-f1717412f3c222af5c3cfc0b248842ea9ec88c9f.tar.xz
forums-f1717412f3c222af5c3cfc0b248842ea9ec88c9f.zip
[feature/twig] Debugging test failures
PHPBB3-11598
Diffstat (limited to 'tests')
-rw-r--r--tests/test_framework/phpbb_test_case_helpers.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/test_framework/phpbb_test_case_helpers.php b/tests/test_framework/phpbb_test_case_helpers.php
index c4907d5ecf..b83b1ca5ca 100644
--- a/tests/test_framework/phpbb_test_case_helpers.php
+++ b/tests/test_framework/phpbb_test_case_helpers.php
@@ -96,6 +96,12 @@ class phpbb_test_case_helpers
{
if (!is_dir($path))
{
+ // Testing
+ if (file_exists($path))
+ {
+ echo $path;
+ }
+
mkdir($path, 0777, true);
}
}