summaryrefslogtreecommitdiff
path: root/ext/sqlite/tests/bug26911.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/sqlite/tests/bug26911.phpt')
-rw-r--r--ext/sqlite/tests/bug26911.phpt12
1 files changed, 0 insertions, 12 deletions
diff --git a/ext/sqlite/tests/bug26911.phpt b/ext/sqlite/tests/bug26911.phpt
deleted file mode 100644
index 74c2167722..0000000000
--- a/ext/sqlite/tests/bug26911.phpt
+++ /dev/null
@@ -1,12 +0,0 @@
---TEST--
-Bug #26911 (crash when fetching data from empty queries)
---SKIPIF--
-<?php if (!extension_loaded("sqlite")) print "skip"; ?>
---FILE--
-<?php
- $db = sqlite_open(":memory:");
- $a = sqlite_query($db, " ");
- echo "I am ok\n";
-?>
---EXPECT--
-I am ok