diff options
author | wei <> | 2006-01-06 22:21:07 +0000 |
---|---|---|
committer | wei <> | 2006-01-06 22:21:07 +0000 |
commit | 333eedb6eea18fdfb7bc0890cce1c30e6d44d363 (patch) | |
tree | 5b34d4181cd55e0219003d67d22a8438ac21b0d2 /tests/FunctionalTests/index.php | |
parent | 16660934cc48f357b1322bce7869158db2f7cb58 (diff) |
Diffstat (limited to 'tests/FunctionalTests/index.php')
-rw-r--r-- | tests/FunctionalTests/index.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/FunctionalTests/index.php b/tests/FunctionalTests/index.php index 442c4bbf..da60b2f0 100644 --- a/tests/FunctionalTests/index.php +++ b/tests/FunctionalTests/index.php @@ -1,7 +1,7 @@ <?php require('config.php'); - +header("Content-Type: text/html; charset=UTF-8"); class BrowserTestConfig extends PradoTestConfig { //functional test groups @@ -17,7 +17,8 @@ class BrowserTestConfig extends PradoTestConfig $groups[] = realpath($base); $dirs = new DirectoryIterator($base); foreach($dirs as $dir) - if(!$dir->isDot() && $dir->isDir()) + if(!$dir->isDot() && $dir->isDir() + && !preg_match("/\.svn/", $dir->getPathName())) $this->get_directories($dir->getPathName(), $groups); } } |