diff options
author | Jani Taskinen <jani@php.net> | 2009-04-25 21:44:33 +0000 |
---|---|---|
committer | Jani Taskinen <jani@php.net> | 2009-04-25 21:44:33 +0000 |
commit | eb190a2ef9075645cc2cf9f989426f2a9a8b2c12 (patch) | |
tree | 9077edcf9266429d7cbfa151d85ec0bb1693ae54 /ext/pdo_sqlite | |
parent | 7be492a2080c2684243b01dea8338ce23def4f23 (diff) | |
download | php-git-eb190a2ef9075645cc2cf9f989426f2a9a8b2c12.tar.gz |
MFH: Fix cleanup
Diffstat (limited to 'ext/pdo_sqlite')
-rw-r--r-- | ext/pdo_sqlite/tests/bug46542.phpt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/ext/pdo_sqlite/tests/bug46542.phpt b/ext/pdo_sqlite/tests/bug46542.phpt index ba2b68ad75..2de0c05191 100644 --- a/ext/pdo_sqlite/tests/bug46542.phpt +++ b/ext/pdo_sqlite/tests/bug46542.phpt @@ -9,12 +9,16 @@ if (!extension_loaded('pdo_sqlite')) print 'skip not loaded'; class A extends PDO { function __call($m, $p) {print __CLASS__."::$m\n";} } -$a = new A('sqlite:' . __DIR__ . 'dummy.db'); +$a = new A('sqlite:' . __DIR__ . '/dummy.db'); $a->truc(); $a->TRUC(); ?> +--CLEAN-- +<?php +unlink(__DIR__ . '/dummy.db'); +?> --EXPECT-- A::truc A::TRUC |