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 #***********************************************************************
12 # This file contains fault-injection test cases for the
13 # sqlite3_db_cacheflush API.
16 set testdir [file dirname $argv0]
17 source $testdir/tester.tcl
18 set testprefix cffault
19 source $testdir/malloc_common.tcl
22 CREATE TABLE t1 (Col0 CHECK(1 COLLATE BINARY BETWEEN 1 AND 1) ) ;
23 CREATE TABLE t2(b, a CHECK(
24 CASE 'abc' COLLATE nocase WHEN a THEN 1 ELSE 0 END)
28 do_faultsim_test 1.1 -faults oom* -body {
29 execsql { INSERT INTO t1 VALUES ('ABCDEFG') }
31 faultsim_test_result {0 {}}
34 do_faultsim_test 1.2 -faults oom* -body {
35 execsql { INSERT INTO t2(a) VALUES('abc') }
37 faultsim_test_result {0 {}}