aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/sqlite/unix/sqlite-3.5.1/test/format4.test
diff options
context:
space:
mode:
authordan miller2007-10-20 02:49:29 +0000
committerdan miller2007-10-20 02:49:29 +0000
commite36d23a85ebff914d74bb541558c2b6082b78edb (patch)
tree54b58fdf162e78af64055282a6035c8d2443389d /libraries/sqlite/unix/sqlite-3.5.1/test/format4.test
parent* Fixed an issue whereby avatar chat distances were being calculated against ... (diff)
downloadopensim-SC-e36d23a85ebff914d74bb541558c2b6082b78edb.zip
opensim-SC-e36d23a85ebff914d74bb541558c2b6082b78edb.tar.gz
opensim-SC-e36d23a85ebff914d74bb541558c2b6082b78edb.tar.bz2
opensim-SC-e36d23a85ebff914d74bb541558c2b6082b78edb.tar.xz
sqlite source (unix build) added to libraries
Diffstat (limited to 'libraries/sqlite/unix/sqlite-3.5.1/test/format4.test')
-rw-r--r--libraries/sqlite/unix/sqlite-3.5.1/test/format4.test65
1 files changed, 65 insertions, 0 deletions
diff --git a/libraries/sqlite/unix/sqlite-3.5.1/test/format4.test b/libraries/sqlite/unix/sqlite-3.5.1/test/format4.test
new file mode 100644
index 0000000..14d7947
--- /dev/null
+++ b/libraries/sqlite/unix/sqlite-3.5.1/test/format4.test
@@ -0,0 +1,65 @@
1# 2005 December 29
2#
3# The author disclaims copyright to this source code. In place of
4# a legal notice, here is a blessing:
5#
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.
9#
10#***********************************************************************
11# This file implements regression tests for SQLite library.
12#
13# This file implements tests to verify that the new serial_type
14# values of 8 (integer 0) and 9 (integer 1) work correctly.
15#
16
17set testdir [file dirname $argv0]
18source $testdir/tester.tcl
19
20db eval {PRAGMA legacy_file_format=OFF}
21
22# The size of the database depends on whether or not autovacuum
23# is enabled.
24#
25ifcapable autovacuum {
26 if {[db one {PRAGMA auto_vacuum}]} {
27 set small 3072
28 set large 5120
29 } else {
30 set small 2048
31 set large 4096
32 }
33} else {
34 set small 2048
35 set large 4096
36}
37
38do_test format4-1.1 {
39 execsql {
40 CREATE TABLE t1(x0,x1,x2,x3,x4,x5,x6,x7,x8,x9);
41 INSERT INTO t1 VALUES(0,0,0,0,0,0,0,0,0,0);
42 INSERT INTO t1 SELECT * FROM t1;
43 INSERT INTO t1 SELECT * FROM t1;
44 INSERT INTO t1 SELECT * FROM t1;
45 INSERT INTO t1 SELECT * FROM t1;
46 INSERT INTO t1 SELECT * FROM t1;
47 INSERT INTO t1 SELECT * FROM t1;
48 }
49 file size test.db
50} $small
51do_test format4-1.2 {
52 execsql {
53 UPDATE t1 SET x0=1, x1=1, x2=1, x3=1, x4=1, x5=1, x6=1, x7=1, x8=1, x9=1
54 }
55 file size test.db
56} $small
57do_test format4-1.3 {
58 execsql {
59 UPDATE t1 SET x0=2, x1=2, x2=2, x3=2, x4=2, x5=2, x6=2, x7=2, x8=2, x9=2
60 }
61 file size test.db
62} $large
63
64
65finish_test