MDL-17522 no db specific tests - they all must work the same!

This commit is contained in:
skodak 2008-12-04 15:06:28 +00:00
parent 923602a056
commit 0055221839

View File

@ -80,12 +80,6 @@ if (!empty($tests)) {
$test->addTestFile($CFG->libdir.'/dml/simpletest/testdml.php');
$test->addTestFile($CFG->libdir.'/ddl/simpletest/testddl.php');
// Look for DB-specific tests (testing sql_ helper functions)
$dbfilename = $CFG->libdir.'/dml/simpletest/test_'.get_class($database).'.php';
if (file_exists($dbfilename)) {
$test->addTestFile($dbfilename);
}
// Make the reporter, which is what displays the results.
$reporter = new ExHtmlReporter($showpasses);