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 #***********************************************************************
11 # This file implements regression tests for SQLite library.
13 # This file implements tests the ability of the library to open
14 # many different databases at the same time without leaking memory.
16 # $Id: manydb.test,v 1.3 2006/01/11 01:08:34 drh Exp $
18 set testdir [file dirname $argv0]
19 source $testdir/tester.tcl
23 # First test how many file descriptors are available for use. To open a
24 # database for writing SQLite requires 3 file descriptors (the database, the
25 # journal and the directory).
28 for {set i 0} {$i<($N * 3)} {incr i} {
29 lappend filehandles [open testfile.1 w]
32 foreach fd $filehandles {
36 file delete -force testfile.1
40 # Create a bunch of random database names
42 unset -nocomplain dbname
43 unset -nocomplain used
44 for {set i 0} {$i<$N} {incr i} {
46 set name test-[format %08x [expr {int(rand()*0x7fffffff)}]].db
47 if {[info exists used($name)]} continue
54 # Create a bunch of databases
56 for {set i 0} {$i<$N} {incr i} {
58 sqlite3 db$i $dbname($i)
62 INSERT INTO t1 VALUES(1,2);
67 # Finish the transactions
69 for {set i 0} {$i<$N} {incr i} {
79 # Close the databases and erase the files.
81 for {set i 0} {$i<$N} {incr i} {
84 file delete -force $dbname($i)