diff options
Diffstat (limited to 'ext/pdo_mysql/tests/pdo_mysql_exec_ddl.phpt')
-rw-r--r-- | ext/pdo_mysql/tests/pdo_mysql_exec_ddl.phpt | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/ext/pdo_mysql/tests/pdo_mysql_exec_ddl.phpt b/ext/pdo_mysql/tests/pdo_mysql_exec_ddl.phpt index 00a2de1692..2e80053556 100644 --- a/ext/pdo_mysql/tests/pdo_mysql_exec_ddl.phpt +++ b/ext/pdo_mysql/tests/pdo_mysql_exec_ddl.phpt @@ -70,13 +70,6 @@ MySQLPDOTest::skip(); 11.1.17. DROP TABLESPACE Syntax */ - // clean up - @$db->exec('DROP TABLE IF EXISTS pdo_exec_ddl'); - @$db->exec('DROP TABLE IF EXISTS pdo_exec_ddl2'); - @$db->exec('DROP DATABASE IF EXISTS pdo_exec_ddl'); - @$db->exec('DROP DATABASE IF EXISTS pdo_exec_ddl2'); - - } catch (PDOException $e) { printf("[001] %s, [%s] %s\n", $e->getMessage(), @@ -84,5 +77,16 @@ MySQLPDOTest::skip(); } print "done!"; +--CLEAN-- +<?php +require dirname(__FILE__) . '/mysql_pdo_test.inc'; +$db = MySQLPDOTest::factory(); +MySQLPDOTest::dropTestTable($db); +// clean up +@$db->exec('DROP TABLE IF EXISTS pdo_exec_ddl'); +@$db->exec('DROP TABLE IF EXISTS pdo_exec_ddl2'); +@$db->exec('DROP DATABASE IF EXISTS pdo_exec_ddl'); +@$db->exec('DROP DATABASE IF EXISTS pdo_exec_ddl2'); +?> --EXPECTF-- done!
\ No newline at end of file |