diff options
Diffstat (limited to 'ext/pdo_sqlite/tests/bug70221.phpt')
-rw-r--r-- | ext/pdo_sqlite/tests/bug70221.phpt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/ext/pdo_sqlite/tests/bug70221.phpt b/ext/pdo_sqlite/tests/bug70221.phpt index 2d1aea0e8b..aa9d4ee8e2 100644 --- a/ext/pdo_sqlite/tests/bug70221.phpt +++ b/ext/pdo_sqlite/tests/bug70221.phpt @@ -12,7 +12,11 @@ function _test() { return 42; } $db->sqliteCreateFunction('test', '_test', 0); print("Everything is fine, no exceptions here\n"); unset($db); -@unlink($dbfile); +?> +--CLEAN-- +<?php +$dbfile = __DIR__ . '/test.sqlite'; +unlink($dbfile); ?> --EXPECT-- Everything is fine, no exceptions here |