aboutsummaryrefslogtreecommitdiff
path: root/test/json101.test
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2015-10-08 23:37:00 +0000
committerdrh <drh@noemail.net>2015-10-08 23:37:00 +0000
commitc306e08ad51b273bb2e132b058746e45f3e1024b (patch)
tree18cbe28f77b0e26400005713d9536258572d1bde /test/json101.test
parentd3b90a2e419f8fea7be84139a48964ca13e9e634 (diff)
downloadsqlite-c306e08ad51b273bb2e132b058746e45f3e1024b.tar.gz
sqlite-c306e08ad51b273bb2e132b058746e45f3e1024b.zip
Json1 tests are working. Builds without FTS5 enabled. Still some problems
building with FTS5. FossilOrigin-Name: 2928f8e87d2e5d121e6e7e5993cbb773bb2b0603
Diffstat (limited to 'test/json101.test')
-rw-r--r--test/json101.test6
1 files changed, 5 insertions, 1 deletions
diff --git a/test/json101.test b/test/json101.test
index 943292640..e11cdd013 100644
--- a/test/json101.test
+++ b/test/json101.test
@@ -15,7 +15,11 @@
set testdir [file dirname $argv0]
source $testdir/tester.tcl
-load_static_extension db json
+ifcapable !json1 {
+ finish_test
+ return
+}
+
do_execsql_test json101-1.1.00 {
SELECT json_array(1,2.5,null,'hello');
} {[1,2.5,null,"hello"]}