First public contribution.
2 # May you do good and not evil.
3 # May you find forgiveness for yourself and forgive others.
4 # May you share freely, never taking more than you give.
6 #***********************************************************************
8 # $Id: async2.test,v 1.9 2007/11/05 17:01:08 danielk1977 Exp $
11 set testdir [file dirname $argv0]
12 source $testdir/tester.tcl
15 [info commands sqlite3async_enable]=="" ||
16 [info command sqlite3_memdebug_fail]==""
18 # The async logic is not built into this system
19 puts "Skipping async2 tests: not compiled with required features"
24 # Enable asynchronous IO.
27 CREATE TABLE counter(c);
28 INSERT INTO counter(c) VALUES (1);
33 UPDATE counter SET c = 2;
34 CREATE TABLE t1(a PRIMARY KEY, b, c);
35 CREATE TABLE t2(a PRIMARY KEY, b, c);
39 UPDATE counter SET c = 3;
40 INSERT INTO t1 VALUES('abcdefghij', 'four', 'score');
41 INSERT INTO t2 VALUES('klmnopqrst', 'and', 'seven');
44 UPDATE counter SET c = 'FIN';
49 foreach err [list ioerr malloc-transient malloc-persistent] {
51 for {set n 1} {$::go} {incr n} {
52 set ::sqlite_io_error_pending 0
53 sqlite3_memdebug_fail -1
54 file delete -force test.db test.db-journal
56 execsql $::setup_script
63 ioerr { set ::sqlite_io_error_pending $n }
64 malloc-persistent { sqlite3_memdebug_fail $n -repeat 1 }
65 malloc-transient { sqlite3_memdebug_fail $n -repeat 0 }
68 catchsql $::sql_script
71 sqlite3async_halt idle
74 sqlite3async_halt never
77 set ::sqlite_io_error_pending 0
78 sqlite3_memdebug_fail -1
81 set c [db eval {SELECT c FROM counter LIMIT 1}]
84 do_test async-$err-1.1.$n {
86 SELECT name FROM sqlite_master;
91 do_test async-$err-1.2.$n.1 {
96 do_test async-$err-1.2.$n.2 {
103 do_test async-$err-1.3.$n.1 {
107 } {abcdefghij four score}
108 do_test async-$err-1.3.$n.2 {
112 } {klmnopqrst and seven}
124 sqlite3async_halt idle
127 sqlite3async_halt never