summaryrefslogtreecommitdiff
path: root/ext/sqlite/tests/bug28112.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/sqlite/tests/bug28112.phpt')
-rwxr-xr-xext/sqlite/tests/bug28112.phpt14
1 files changed, 0 insertions, 14 deletions
diff --git a/ext/sqlite/tests/bug28112.phpt b/ext/sqlite/tests/bug28112.phpt
deleted file mode 100755
index 05c8ff81f3..0000000000
--- a/ext/sqlite/tests/bug28112.phpt
+++ /dev/null
@@ -1,14 +0,0 @@
---TEST--
-Bug #28112 (sqlite_query() crashing apache on malformed query)
---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===