diff options
Diffstat (limited to 'ext/sqlite/tests/bug28112.phpt')
-rwxr-xr-x | ext/sqlite/tests/bug28112.phpt | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/ext/sqlite/tests/bug28112.phpt b/ext/sqlite/tests/bug28112.phpt deleted file mode 100755 index f3e9b8b9ec..0000000000 --- a/ext/sqlite/tests/bug28112.phpt +++ /dev/null @@ -1,16 +0,0 @@ ---TEST-- -Bug #28112 (sqlite_query() crashing apache on malformed query) ---SKIPIF-- -<?php if (!extension_loaded("sqlite")) print "skip"; ?> ---FILE-- -<?php - -if (!($db = sqlite_open(":memory:", 666, $error))) die ("Couldn't open the database"); -sqlite_query($db, "create table frob (foo INTEGER PRIMARY KEY, bar text);"); -$res = @sqlite_array_query($db, ""); - -?> -===DONE=== -<?php exit(0); ?> ---EXPECTF-- -===DONE=== |