First public contribution.
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 # $Id: thread_common.tcl,v 1.2 2007/09/10 10:53:02 danielk1977 Exp $
14 set testdir [file dirname $argv0]
15 source $testdir/tester.tcl
17 if {[info commands sqlthread] eq ""} {
18 puts -nonewline "Skipping thread-safety tests - "
19 puts " not running a threadsafe sqlite/tcl build"
20 puts -nonewline "Both SQLITE_THREADSAFE and TCL_THREADS must be defined when"
21 puts " building testfixture"
26 # The following script is sourced by every thread spawned using
30 # Execute the supplied SQL using database handle $::DB.
35 while {$rc eq "SQLITE_LOCKED"
36 || $rc eq "SQLITE_BUSY"
37 || $rc eq "SQLITE_SCHEMA"} {
41 set ::STMT [sqlite3_prepare_v2 $::DB $sql -1 dummy_tail]
45 while {[set rc [sqlite3_step $::STMT]] eq "SQLITE_ROW"} {
46 for {set i 0} {$i < [sqlite3_column_count $::STMT]} {incr i} {
47 lappend res [sqlite3_column_text $::STMT 0]
50 set rc [sqlite3_finalize $::STMT]
52 if {[string first (6) $msg]} {
59 if {[string first locked [sqlite3_errmsg $::DB]]>=0} {
63 if {$rc eq "SQLITE_LOCKED" || $rc eq "SQLITE_BUSY"} {
64 #puts -nonewline "([sqlthread id] $rc)"
70 if {$rc ne "SQLITE_OK"} {
71 error "$rc - [sqlite3_errmsg $::DB]"
76 proc do_test {name script result} {
77 set res [eval $script]
78 if {$res ne $result} {
79 error "$name failed: expected \"$result\" got \"$res\""
84 proc thread_spawn {varname args} {
85 sqlthread spawn $varname [join $args ;]