summaryrefslogtreecommitdiff
path: root/ext/pdo_sqlite
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2016-05-01 19:27:13 +0200
committerAnatol Belski <ab@php.net>2016-05-01 19:27:13 +0200
commit770a6d1342fcc30bb273ac6d65fc9fc057b1ce21 (patch)
tree7b9134529880fe3efdbc60c36122a7982093be9e /ext/pdo_sqlite
parent965ff1c9bb62be990fc5b57cb975f1b277fb5445 (diff)
parent5360b3de338f2945586ada962ef078ca2e43c5f3 (diff)
downloadphp-git-770a6d1342fcc30bb273ac6d65fc9fc057b1ce21.tar.gz
Merge branch 'PHP-7.0'
* PHP-7.0: fix test if unlink fails occasionally fix dir separator in test
Diffstat (limited to 'ext/pdo_sqlite')
-rw-r--r--ext/pdo_sqlite/tests/bug70221.phpt2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pdo_sqlite/tests/bug70221.phpt b/ext/pdo_sqlite/tests/bug70221.phpt
index bead80d233..2d1aea0e8b 100644
--- a/ext/pdo_sqlite/tests/bug70221.phpt
+++ b/ext/pdo_sqlite/tests/bug70221.phpt
@@ -12,7 +12,7 @@ function _test() { return 42; }
$db->sqliteCreateFunction('test', '_test', 0);
print("Everything is fine, no exceptions here\n");
unset($db);
-unlink($dbfile);
+@unlink($dbfile);
?>
--EXPECT--
Everything is fine, no exceptions here