Index: trunk/phase3/tests/phpunit/MediaWikiTestCase.php |
— | — | @@ -49,7 +49,9 @@ |
50 | 50 | } |
51 | 51 | |
52 | 52 | function __destruct() { |
53 | | - $this->destroyDB(); |
| 53 | + if( $this->needsDB() ) { |
| 54 | + $this->destroyDB(); |
| 55 | + } |
54 | 56 | } |
55 | 57 | |
56 | 58 | function needsDB() { |
— | — | @@ -121,7 +123,7 @@ |
122 | 124 | //return; |
123 | 125 | //Temporary tables seem to be broken ATM, delete anyway |
124 | 126 | } |
125 | | - |
| 127 | + |
126 | 128 | if( $this->db->getType() == 'oracle' ) { |
127 | 129 | $tables = $this->db->listTables( 'ut_', __METHOD__ ); |
128 | 130 | } |