diff --git a/tests/index.php b/tests/index.php index be02f10..d13f8da 100644 --- a/tests/index.php +++ b/tests/index.php @@ -47,12 +47,14 @@ foreach(pdo_drivers() as $d) if(is_dir($src_dir)) { - array_map('do_include', glob("{$test_path}{$d}/{$d}*.php")); + require_once("{$test_path}{$d}/{$d}.php"); + require_once("{$test_path}{$d}/{$d}-qb.php"); } } // Load Firebird if there is support if(function_exists('fbird_connect')) { - array_map('do_include', glob("{$test_path}/firebird/firebird*.php")); + require_once("{$test_path}/firebird/firebird.php"); + require_once("{$test_path}/firebird/firebird-qb.php"); } \ No newline at end of file