From: Jani Taskinen Date: Sat, 25 Apr 2009 21:44:20 +0000 (+0000) Subject: - Fix cleanup X-Git-Tag: php-5.4.0alpha1~191^2~3834 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7477102a6072d7e0908560efeb858ef725f55675;p=php - Fix cleanup --- diff --git a/ext/pdo_sqlite/tests/bug46542.phpt b/ext/pdo_sqlite/tests/bug46542.phpt index ccde633dc7..2de0c05191 100644 --- a/ext/pdo_sqlite/tests/bug46542.phpt +++ b/ext/pdo_sqlite/tests/bug46542.phpt @@ -9,11 +9,15 @@ 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:dummy.db'); +$a = new A('sqlite:' . __DIR__ . '/dummy.db'); $a->truc(); $a->TRUC(); +?> +--CLEAN-- + --EXPECT-- A::truc