diff options
author | drh <drh@noemail.net> | 2015-10-08 23:37:00 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2015-10-08 23:37:00 +0000 |
commit | c306e08ad51b273bb2e132b058746e45f3e1024b (patch) | |
tree | 18cbe28f77b0e26400005713d9536258572d1bde /test/json101.test | |
parent | d3b90a2e419f8fea7be84139a48964ca13e9e634 (diff) | |
download | sqlite-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.test | 6 |
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"]} |