3 # The author disclaims copyright to this source code. In place of
4 # a legal notice, here is a blessing:
6 # May you do good and not evil.
7 # May you find forgiveness for yourself and forgive others.
8 # May you share freely, never taking more than you give.
10 #*************************************************************************
11 # This file implements regression tests for SQLite library. The
12 # focus of this script is testing the "fts3tokenize" virtual table
13 # that is part of the FTS3 module.
16 set testdir [file dirname $argv0]
17 source $testdir/tester.tcl
18 source $testdir/malloc_common.tcl
19 ifcapable !fts3 { finish_test ; return }
20 set ::testprefix fts3tok_err
23 faultsim_save_and_close
24 do_faultsim_test fts3tok_err-1 -faults oom* -prep {
25 faultsim_restore_and_reopen
27 execsql { CREATE VIRTUAL TABLE t1 USING fts3tokenize("simple"); }
29 faultsim_test_result {0 {}}
32 do_test fts3tok_err-2.prep {
33 faultsim_delete_and_reopen
34 execsql { CREATE VIRTUAL TABLE t1 USING fts3tokenize("simple"); }
35 faultsim_save_and_close
38 do_faultsim_test fts3tok_err-2 -faults oom* -prep {
39 faultsim_restore_and_reopen
41 execsql { SELECT token FROM t1 WHERE input = 'A galaxy far, far away' }
43 faultsim_test_result {0 {a galaxy far far away}}