blob: 614ce35458965a020ff28fe7cc017c80f2f7a114 [file] [log] [blame]
drhd477eee2014-12-23 19:40:51 +00001#!/usr/bin/tclsh
2#
drh96110de2010-09-06 18:44:14 +00003# Documentation for this script. This may be output to stderr
4# if the script is invoked incorrectly. See the [process_options]
5# proc below.
6#
7set ::USAGE_MESSAGE {
8This Tcl script is used to test the various configurations required
mistachkin72840562014-12-23 20:22:57 +00009before releasing a new version. Supported command line options (all
drh96110de2010-09-06 18:44:14 +000010optional) are:
11
drhd477eee2014-12-23 19:40:51 +000012 --buildonly (Just build testfixture - do not run)
drheedeb922016-09-09 12:29:57 +000013 --config CONFIGNAME (Run only CONFIGNAME)
mistachkin72840562014-12-23 20:22:57 +000014 --dryrun (Print what would have happened)
drheedeb922016-09-09 12:29:57 +000015 -f|--force (Run even if uncommitted changes)
drhd477eee2014-12-23 19:40:51 +000016 --info (Show diagnostic info)
dane9e15052015-11-02 20:28:48 +000017 --jobs N (Use N processes - default 1)
dand562ec22016-09-12 09:28:21 +000018 --keep (Delete no files after each test run)
drheedeb922016-09-09 12:29:57 +000019 --msvc (Use MSVC as the compiler)
20 --platform PLATFORM (see below)
drh7f8a93d2015-11-03 15:39:29 +000021 --progress (Show progress messages)
drheedeb922016-09-09 12:29:57 +000022 --quick (Run "veryquick.test" only)
drheedeb922016-09-09 12:29:57 +000023 --veryquick (Run "make smoketest" only)
24 --with-tcl=DIR (Use TCL build at DIR)
drh96110de2010-09-06 18:44:14 +000025
drhd477eee2014-12-23 19:40:51 +000026The script determines the default value for --platform using the
mistachkin00eb70d2015-04-04 00:02:07 +000027$tcl_platform(os) and $tcl_platform(machine) variables. Supported
28platforms are "Linux-x86", "Linux-x86_64", "Darwin-i386",
29"Darwin-x86_64", "Windows NT-intel", and "Windows NT-amd64".
drh96110de2010-09-06 18:44:14 +000030
drhd477eee2014-12-23 19:40:51 +000031Every test begins with a fresh run of the configure script at the top
32of the SQLite source tree.
drh96110de2010-09-06 18:44:14 +000033}
34
drh4380ff82015-11-03 15:16:21 +000035# Return a timestamp of the form HH:MM:SS
36#
37proc now {} {
38 return [clock format [clock seconds] -format %H:%M:%S]
39}
40
drh6aed1c42015-01-10 15:21:26 +000041# Omit comments (text between # and \n) in a long multi-line string.
42#
43proc strip_comments {in} {
44 regsub -all {#[^\n]*\n} $in {} out
45 return $out
46}
47
48array set ::Configs [strip_comments {
drh96110de2010-09-06 18:44:14 +000049 "Default" {
50 -O2
drhedb31cd2015-01-08 02:15:11 +000051 --disable-amalgamation --disable-shared
drh5e18d402016-05-03 13:14:18 +000052 --enable-session
drh96110de2010-09-06 18:44:14 +000053 }
drh4081d5d2015-01-01 23:02:01 +000054 "Sanitize" {
drh149735d2015-01-01 19:53:10 +000055 CC=clang -fsanitize=undefined
drh4081d5d2015-01-01 23:02:01 +000056 -DSQLITE_ENABLE_STAT4
drh5e18d402016-05-03 13:14:18 +000057 --enable-session
dan56089732011-04-06 12:37:09 +000058 }
drh8ef24b82016-08-01 15:00:00 +000059 "Stdcall" {
60 -DUSE_STDCALL=1
61 -O2
62 }
drh0ede9eb2015-01-10 16:49:23 +000063 "Have-Not" {
64 # The "Have-Not" configuration sets all possible -UHAVE_feature options
65 # in order to verify that the code works even on platforms that lack
66 # these support services.
67 -DHAVE_FDATASYNC=0
68 -DHAVE_GMTIME_R=0
drh8567d402015-01-10 18:22:06 +000069 -DHAVE_ISNAN=0
drh0ede9eb2015-01-10 16:49:23 +000070 -DHAVE_LOCALTIME_R=0
71 -DHAVE_LOCALTIME_S=0
72 -DHAVE_MALLOC_USABLE_SIZE=0
73 -DHAVE_STRCHRNUL=0
74 -DHAVE_USLEEP=0
75 -DHAVE_UTIME=0
drh96110de2010-09-06 18:44:14 +000076 }
77 "Unlock-Notify" {
78 -O2
79 -DSQLITE_ENABLE_UNLOCK_NOTIFY
80 -DSQLITE_THREADSAFE
drh96110de2010-09-06 18:44:14 +000081 -DSQLITE_TCL_DEFAULT_FULLMUTEX=1
82 }
83 "Secure-Delete" {
84 -O2
85 -DSQLITE_SECURE_DELETE=1
86 -DSQLITE_SOUNDEX=1
87 }
88 "Update-Delete-Limit" {
89 -O2
90 -DSQLITE_DEFAULT_FILE_FORMAT=4
91 -DSQLITE_ENABLE_UPDATE_DELETE_LIMIT=1
drh1a803842015-01-09 20:00:21 +000092 -DSQLITE_ENABLE_STMT_SCANSTATUS
drh7f105792016-01-04 01:08:50 +000093 -DSQLITE_LIKE_DOESNT_MATCH_BLOBS
94 -DSQLITE_ENABLE_CURSOR_HINTS
drhce1d9f52015-10-09 12:48:33 +000095 --enable-json1
drh96110de2010-09-06 18:44:14 +000096 }
danb136e902012-12-10 10:22:48 +000097 "Check-Symbols" {
98 -DSQLITE_MEMDEBUG=1
99 -DSQLITE_ENABLE_FTS3_PARENTHESIS=1
100 -DSQLITE_ENABLE_FTS3=1
101 -DSQLITE_ENABLE_RTREE=1
102 -DSQLITE_ENABLE_MEMSYS5=1
103 -DSQLITE_ENABLE_MEMSYS3=1
104 -DSQLITE_ENABLE_COLUMN_METADATA=1
105 -DSQLITE_ENABLE_UPDATE_DELETE_LIMIT=1
106 -DSQLITE_SECURE_DELETE=1
107 -DSQLITE_SOUNDEX=1
108 -DSQLITE_ENABLE_ATOMIC_WRITE=1
danb136e902012-12-10 10:22:48 +0000109 -DSQLITE_ENABLE_MEMORY_MANAGEMENT=1
110 -DSQLITE_ENABLE_OVERSIZE_CELL_CHECK=1
drh4081d5d2015-01-01 23:02:01 +0000111 -DSQLITE_ENABLE_STAT4
drh1a803842015-01-09 20:00:21 +0000112 -DSQLITE_ENABLE_STMT_SCANSTATUS
drh5e18d402016-05-03 13:14:18 +0000113 --enable-json1 --enable-fts5 --enable-session
danb136e902012-12-10 10:22:48 +0000114 }
drh96110de2010-09-06 18:44:14 +0000115 "Debug-One" {
drh8f455552015-01-07 14:41:18 +0000116 --disable-shared
drh96110de2010-09-06 18:44:14 +0000117 -O2
118 -DSQLITE_DEBUG=1
119 -DSQLITE_MEMDEBUG=1
120 -DSQLITE_MUTEX_NOOP=1
121 -DSQLITE_TCL_DEFAULT_FULLMUTEX=1
122 -DSQLITE_ENABLE_FTS3=1
123 -DSQLITE_ENABLE_RTREE=1
124 -DSQLITE_ENABLE_MEMSYS5=1
drh96110de2010-09-06 18:44:14 +0000125 -DSQLITE_ENABLE_COLUMN_METADATA=1
drh4081d5d2015-01-01 23:02:01 +0000126 -DSQLITE_ENABLE_STAT4
drh03d69a62015-11-19 13:53:57 +0000127 -DSQLITE_ENABLE_HIDDEN_COLUMNS
drhedb31cd2015-01-08 02:15:11 +0000128 -DSQLITE_MAX_ATTACHED=125
drh96110de2010-09-06 18:44:14 +0000129 }
drhf3320712015-04-25 13:39:29 +0000130 "Fast-One" {
131 -O6
132 -DSQLITE_ENABLE_FTS4=1
133 -DSQLITE_ENABLE_RTREE=1
134 -DSQLITE_ENABLE_STAT4
drhcfb8f8d2015-07-23 20:44:49 +0000135 -DSQLITE_ENABLE_RBU
drh96110de2010-09-06 18:44:14 +0000136 -DSQLITE_MAX_ATTACHED=125
drh51675f22015-11-06 20:04:08 +0000137 -DLONGDOUBLE_TYPE=double
drh5e18d402016-05-03 13:14:18 +0000138 --enable-session
drh96110de2010-09-06 18:44:14 +0000139 }
drh96110de2010-09-06 18:44:14 +0000140 "Device-One" {
141 -O2
142 -DSQLITE_DEBUG=1
drh96110de2010-09-06 18:44:14 +0000143 -DSQLITE_DEFAULT_AUTOVACUUM=1
drh96110de2010-09-06 18:44:14 +0000144 -DSQLITE_DEFAULT_CACHE_SIZE=64
dan1c22a182010-09-13 11:29:02 +0000145 -DSQLITE_DEFAULT_PAGE_SIZE=1024
drh96110de2010-09-06 18:44:14 +0000146 -DSQLITE_DEFAULT_TEMP_CACHE_SIZE=32
dan1c22a182010-09-13 11:29:02 +0000147 -DSQLITE_DISABLE_LFS=1
drh96110de2010-09-06 18:44:14 +0000148 -DSQLITE_ENABLE_ATOMIC_WRITE=1
dan1c22a182010-09-13 11:29:02 +0000149 -DSQLITE_ENABLE_IOTRACE=1
150 -DSQLITE_ENABLE_MEMORY_MANAGEMENT=1
151 -DSQLITE_MAX_PAGE_SIZE=4096
152 -DSQLITE_OMIT_LOAD_EXTENSION=1
153 -DSQLITE_OMIT_PROGRESS_CALLBACK=1
154 -DSQLITE_OMIT_VIRTUALTABLE=1
drh03d69a62015-11-19 13:53:57 +0000155 -DSQLITE_ENABLE_HIDDEN_COLUMNS
dan1c22a182010-09-13 11:29:02 +0000156 -DSQLITE_TEMP_STORE=3
drh64db1842015-10-09 13:29:27 +0000157 --enable-json1
dan1c22a182010-09-13 11:29:02 +0000158 }
159 "Device-Two" {
160 -DSQLITE_4_BYTE_ALIGNED_MALLOC=1
161 -DSQLITE_DEFAULT_AUTOVACUUM=1
162 -DSQLITE_DEFAULT_CACHE_SIZE=1000
163 -DSQLITE_DEFAULT_LOCKING_MODE=0
164 -DSQLITE_DEFAULT_PAGE_SIZE=1024
165 -DSQLITE_DEFAULT_TEMP_CACHE_SIZE=1000
166 -DSQLITE_DISABLE_LFS=1
167 -DSQLITE_ENABLE_FTS3=1
168 -DSQLITE_ENABLE_MEMORY_MANAGEMENT=1
169 -DSQLITE_ENABLE_RTREE=1
170 -DSQLITE_MAX_COMPOUND_SELECT=50
171 -DSQLITE_MAX_PAGE_SIZE=32768
dan1c22a182010-09-13 11:29:02 +0000172 -DSQLITE_OMIT_TRACE=1
173 -DSQLITE_TEMP_STORE=3
174 -DSQLITE_THREADSAFE=2
drh5e18d402016-05-03 13:14:18 +0000175 --enable-json1 --enable-fts5 --enable-session
drh96110de2010-09-06 18:44:14 +0000176 }
177 "Locking-Style" {
178 -O2
179 -DSQLITE_ENABLE_LOCKING_STYLE=1
180 }
drh790b1512016-03-17 23:00:42 +0000181 "Apple" {
drh92b71752017-05-23 19:35:20 +0000182 -Os
drh790b1512016-03-17 23:00:42 +0000183 -DHAVE_GMTIME_R=1
184 -DHAVE_ISNAN=1
185 -DHAVE_LOCALTIME_R=1
186 -DHAVE_PREAD=1
187 -DHAVE_PWRITE=1
188 -DHAVE_USLEEP=1
189 -DHAVE_USLEEP=1
190 -DHAVE_UTIME=1
191 -DSQLITE_DEFAULT_CACHE_SIZE=1000
192 -DSQLITE_DEFAULT_CKPTFULLFSYNC=1
193 -DSQLITE_DEFAULT_MEMSTATUS=1
194 -DSQLITE_DEFAULT_PAGE_SIZE=1024
195 -DSQLITE_DISABLE_PAGECACHE_OVERFLOW_STATS=1
196 -DSQLITE_ENABLE_API_ARMOR=1
197 -DSQLITE_ENABLE_AUTO_PROFILE=1
198 -DSQLITE_ENABLE_FLOCKTIMEOUT=1
dan1c22a182010-09-13 11:29:02 +0000199 -DSQLITE_ENABLE_FTS3=1
200 -DSQLITE_ENABLE_FTS3_PARENTHESIS=1
drh790b1512016-03-17 23:00:42 +0000201 -DSQLITE_ENABLE_FTS3_TOKENIZER=1
202 if:os=="Darwin" -DSQLITE_ENABLE_LOCKING_STYLE=1
203 -DSQLITE_ENABLE_PERSIST_WAL=1
204 -DSQLITE_ENABLE_PURGEABLE_PCACHE=1
205 -DSQLITE_ENABLE_RTREE=1
206 -DSQLITE_ENABLE_SNAPSHOT=1
207 # -DSQLITE_ENABLE_SQLLOG=1
208 -DSQLITE_ENABLE_UPDATE_DELETE_LIMIT=1
dan1c22a182010-09-13 11:29:02 +0000209 -DSQLITE_MAX_LENGTH=2147483645
210 -DSQLITE_MAX_VARIABLE_NUMBER=500000
drh9493caf2016-03-17 23:16:37 +0000211 # -DSQLITE_MEMDEBUG=1
drh790b1512016-03-17 23:00:42 +0000212 -DSQLITE_NO_SYNC=1
213 -DSQLITE_OMIT_AUTORESET=1
214 -DSQLITE_OMIT_LOAD_EXTENSION=1
dan1c22a182010-09-13 11:29:02 +0000215 -DSQLITE_PREFER_PROXY_LOCKING=1
drh790b1512016-03-17 23:00:42 +0000216 -DSQLITE_SERIES_CONSTRAINT_VERIFY=1
217 -DSQLITE_THREADSAFE=2
218 -DSQLITE_USE_URI=1
219 -DSQLITE_WRITE_WALFRAME_PREBUFFERED=1
220 -DUSE_GUARDED_FD=1
221 -DUSE_PREAD=1
drhce1d9f52015-10-09 12:48:33 +0000222 --enable-json1 --enable-fts5
drh96110de2010-09-06 18:44:14 +0000223 }
224 "Extra-Robustness" {
225 -DSQLITE_ENABLE_OVERSIZE_CELL_CHECK=1
dan56089732011-04-06 12:37:09 +0000226 -DSQLITE_MAX_ATTACHED=62
drh96110de2010-09-06 18:44:14 +0000227 }
dan4dc3d732012-08-20 17:24:48 +0000228 "Devkit" {
229 -DSQLITE_DEFAULT_FILE_FORMAT=4
230 -DSQLITE_MAX_ATTACHED=30
231 -DSQLITE_ENABLE_COLUMN_METADATA
232 -DSQLITE_ENABLE_FTS4
dane82126c2016-03-01 16:02:57 +0000233 -DSQLITE_ENABLE_FTS5
dan4dc3d732012-08-20 17:24:48 +0000234 -DSQLITE_ENABLE_FTS4_PARENTHESIS
235 -DSQLITE_DISABLE_FTS4_DEFERRED
236 -DSQLITE_ENABLE_RTREE
drhce1d9f52015-10-09 12:48:33 +0000237 --enable-json1 --enable-fts5
dan4dc3d732012-08-20 17:24:48 +0000238 }
dand79d27a2014-08-12 14:06:13 +0000239 "No-lookaside" {
240 -DSQLITE_TEST_REALLOC_STRESS=1
241 -DSQLITE_OMIT_LOOKASIDE=1
242 -DHAVE_USLEEP=1
243 }
drh8a2a0f52015-01-07 14:09:41 +0000244 "Valgrind" {
245 -DSQLITE_ENABLE_STAT4
246 -DSQLITE_ENABLE_FTS4
247 -DSQLITE_ENABLE_RTREE
drh03d69a62015-11-19 13:53:57 +0000248 -DSQLITE_ENABLE_HIDDEN_COLUMNS
drhce1d9f52015-10-09 12:48:33 +0000249 --enable-json1
drh8a2a0f52015-01-07 14:09:41 +0000250 }
drh96110de2010-09-06 18:44:14 +0000251
drh6aed1c42015-01-10 15:21:26 +0000252 # The next group of configurations are used only by the
253 # Failure-Detection platform. They are all the same, but we need
254 # different names for them all so that they results appear in separate
255 # subdirectories.
256 #
drhedb31cd2015-01-08 02:15:11 +0000257 Fail0 {-O0}
258 Fail2 {-O0}
259 Fail3 {-O0}
drhdb6bafa2015-01-09 21:54:58 +0000260 Fail4 {-O0}
drh8ea5eca2015-04-24 16:53:03 +0000261 FuzzFail1 {-O0}
262 FuzzFail2 {-O0}
drh6aed1c42015-01-10 15:21:26 +0000263}]
drh96110de2010-09-06 18:44:14 +0000264
drh6aed1c42015-01-10 15:21:26 +0000265array set ::Platforms [strip_comments {
drh96110de2010-09-06 18:44:14 +0000266 Linux-x86_64 {
danb136e902012-12-10 10:22:48 +0000267 "Check-Symbols" checksymbols
drh71258ab2015-11-04 16:34:58 +0000268 "Fast-One" fuzztest
drhbd41d562014-12-30 20:40:32 +0000269 "Debug-One" "mptest test"
drh0ede9eb2015-01-10 16:49:23 +0000270 "Have-Not" test
drh96110de2010-09-06 18:44:14 +0000271 "Secure-Delete" test
272 "Unlock-Notify" "QUICKTEST_INCLUDE=notify2.test test"
drh96110de2010-09-06 18:44:14 +0000273 "Update-Delete-Limit" test
drh96110de2010-09-06 18:44:14 +0000274 "Extra-Robustness" test
dan1c22a182010-09-13 11:29:02 +0000275 "Device-Two" test
dand79d27a2014-08-12 14:06:13 +0000276 "No-lookaside" test
dan5d510d42014-10-15 15:28:27 +0000277 "Devkit" test
drh790b1512016-03-17 23:00:42 +0000278 "Apple" test
drh8a2a0f52015-01-07 14:09:41 +0000279 "Sanitize" {QUICKTEST_OMIT=func4.test,nan.test test}
drh96110de2010-09-06 18:44:14 +0000280 "Device-One" fulltest
drh71258ab2015-11-04 16:34:58 +0000281 "Default" "threadtest fulltest"
282 "Valgrind" valgrindtest
drh96110de2010-09-06 18:44:14 +0000283 }
dan1c22a182010-09-13 11:29:02 +0000284 Linux-i686 {
dan4dc3d732012-08-20 17:24:48 +0000285 "Devkit" test
drh0ede9eb2015-01-10 16:49:23 +0000286 "Have-Not" test
dan1c22a182010-09-13 11:29:02 +0000287 "Unlock-Notify" "QUICKTEST_INCLUDE=notify2.test test"
dan1c22a182010-09-13 11:29:02 +0000288 "Device-One" test
dand38bc1b2010-09-13 12:15:36 +0000289 "Device-Two" test
290 "Default" "threadtest fulltest"
dan1c22a182010-09-13 11:29:02 +0000291 }
drh96110de2010-09-06 18:44:14 +0000292 Darwin-i386 {
drhbd41d562014-12-30 20:40:32 +0000293 "Locking-Style" "mptest test"
drh0ede9eb2015-01-10 16:49:23 +0000294 "Have-Not" test
drh790b1512016-03-17 23:00:42 +0000295 "Apple" "threadtest fulltest"
drh96110de2010-09-06 18:44:14 +0000296 }
drhbcbac682014-12-31 18:55:09 +0000297 Darwin-x86_64 {
298 "Locking-Style" "mptest test"
drh0ede9eb2015-01-10 16:49:23 +0000299 "Have-Not" test
drh790b1512016-03-17 23:00:42 +0000300 "Apple" "threadtest fulltest"
drhbcbac682014-12-31 18:55:09 +0000301 }
mistachkin72840562014-12-23 20:22:57 +0000302 "Windows NT-intel" {
drh8ef24b82016-08-01 15:00:00 +0000303 "Stdcall" test
drh0ede9eb2015-01-10 16:49:23 +0000304 "Have-Not" test
drh71258ab2015-11-04 16:34:58 +0000305 "Default" "mptest fulltestonly"
mistachkin72840562014-12-23 20:22:57 +0000306 }
mistachkin00eb70d2015-04-04 00:02:07 +0000307 "Windows NT-amd64" {
drh8ef24b82016-08-01 15:00:00 +0000308 "Stdcall" test
mistachkin00eb70d2015-04-04 00:02:07 +0000309 "Have-Not" test
drh71258ab2015-11-04 16:34:58 +0000310 "Default" "mptest fulltestonly"
mistachkin00eb70d2015-04-04 00:02:07 +0000311 }
drh6aed1c42015-01-10 15:21:26 +0000312
313 # The Failure-Detection platform runs various tests that deliberately
314 # fail. This is used as a test of this script to verify that this script
315 # correctly identifies failures.
316 #
drhedb31cd2015-01-08 02:15:11 +0000317 Failure-Detection {
318 Fail0 "TEST_FAILURE=0 test"
319 Sanitize "TEST_FAILURE=1 test"
320 Fail2 "TEST_FAILURE=2 valgrindtest"
321 Fail3 "TEST_FAILURE=3 valgrindtest"
drhdb6bafa2015-01-09 21:54:58 +0000322 Fail4 "TEST_FAILURE=4 test"
drh8ea5eca2015-04-24 16:53:03 +0000323 FuzzFail1 "TEST_FAILURE=5 test"
324 FuzzFail2 "TEST_FAILURE=5 valgrindtest"
drhedb31cd2015-01-08 02:15:11 +0000325 }
drh6aed1c42015-01-10 15:21:26 +0000326}]
drh96110de2010-09-06 18:44:14 +0000327
dane7152dc2011-07-07 08:19:16 +0000328
drh96110de2010-09-06 18:44:14 +0000329# End of configuration section.
330#########################################################################
331#########################################################################
332
mistachkinda9da562015-11-02 23:29:58 +0000333# Configuration verification: Check that each entry in the list of configs
dana7f65972015-11-02 18:32:00 +0000334# specified for each platforms exists.
335#
drh96110de2010-09-06 18:44:14 +0000336foreach {key value} [array get ::Platforms] {
337 foreach {v t} $value {
338 if {0==[info exists ::Configs($v)]} {
339 puts stderr "No such configuration: \"$v\""
340 exit -1
341 }
342 }
343}
344
drhd63fbb72015-11-13 12:52:34 +0000345# Output log. Disabled for slave interpreters.
drhe31dc592015-08-14 12:53:37 +0000346#
drhd63fbb72015-11-13 12:52:34 +0000347if {[lindex $argv end]!="--slave"} {
348 set LOG [open releasetest-out.txt w]
349 proc PUTS {txt} {
350 puts $txt
351 puts $::LOG $txt
352 flush $::LOG
drhe31dc592015-08-14 12:53:37 +0000353 }
drhd63fbb72015-11-13 12:52:34 +0000354 proc PUTSNNL {txt} {
355 puts -nonewline $txt
356 puts -nonewline $::LOG $txt
357 flush $::LOG
358 }
359 proc PUTSERR {txt} {
360 puts stderr $txt
361 puts $::LOG $txt
362 flush $::LOG
363 }
364 puts $LOG "$argv0 $argv"
365 set tm0 [clock format [clock seconds] -format {%Y-%m-%d %H:%M:%S} -gmt 1]
366 puts $LOG "start-time: $tm0 UTC"
367} else {
368 proc PUTS {txt} {
369 puts $txt
370 }
371 proc PUTSNNL {txt} {
372 puts -nonewline $txt
373 }
374 proc PUTSERR {txt} {
375 puts stderr $txt
376 }
drhe31dc592015-08-14 12:53:37 +0000377}
drhe31dc592015-08-14 12:53:37 +0000378
drh277b4e42014-12-29 02:55:58 +0000379# Open the file $logfile and look for a report on the number of errors
380# and the number of test cases run. Add these values to the global
381# $::NERRCASE and $::NTESTCASE variables.
382#
383# If any errors occur, then write into $errmsgVar the text of an appropriate
384# one-line error message to show on the output.
385#
386proc count_tests_and_errors {logfile rcVar errmsgVar} {
drhcb281a92014-12-29 19:54:10 +0000387 if {$::DRYRUN} return
drh277b4e42014-12-29 02:55:58 +0000388 upvar 1 $rcVar rc $errmsgVar errmsg
389 set fd [open $logfile rb]
390 set seen 0
391 while {![eof $fd]} {
392 set line [gets $fd]
drhbd41d562014-12-30 20:40:32 +0000393 if {[regexp {(\d+) errors out of (\d+) tests} $line all nerr ntest]} {
drh277b4e42014-12-29 02:55:58 +0000394 incr ::NERRCASE $nerr
395 incr ::NTESTCASE $ntest
396 set seen 1
397 if {$nerr>0} {
398 set rc 1
399 set errmsg $line
400 }
drh277b4e42014-12-29 02:55:58 +0000401 }
drh4081d5d2015-01-01 23:02:01 +0000402 if {[regexp {runtime error: +(.*)} $line all msg]} {
drh36c25f72015-07-29 20:24:39 +0000403 # skip over "value is outside range" errors
404 if {[regexp {value .* is outside the range of representable} $line]} {
405 # noop
406 } else {
407 incr ::NERRCASE
408 if {$rc==0} {
409 set rc 1
410 set errmsg $msg
411 }
drh4081d5d2015-01-01 23:02:01 +0000412 }
413 }
mistachkin00eb70d2015-04-04 00:02:07 +0000414 if {[regexp {fatal error +(.*)} $line all msg]} {
415 incr ::NERRCASE
416 if {$rc==0} {
417 set rc 1
418 set errmsg $msg
419 }
420 }
drh8a2a0f52015-01-07 14:09:41 +0000421 if {[regexp {ERROR SUMMARY: (\d+) errors.*} $line all cnt] && $cnt>0} {
422 incr ::NERRCASE
423 if {$rc==0} {
424 set rc 1
425 set errmsg $all
426 }
427 }
drh5bfff9d2015-01-08 01:05:42 +0000428 if {[regexp {^VERSION: 3\.\d+.\d+} $line]} {
429 set v [string range $line 9 end]
430 if {$::SQLITE_VERSION eq ""} {
431 set ::SQLITE_VERSION $v
432 } elseif {$::SQLITE_VERSION ne $v} {
433 set rc 1
434 set errmsg "version conflict: {$::SQLITE_VERSION} vs. {$v}"
435 }
436 }
drh277b4e42014-12-29 02:55:58 +0000437 }
438 close $fd
mistachkin00eb70d2015-04-04 00:02:07 +0000439 if {$::BUILDONLY} {
drh7f8a93d2015-11-03 15:39:29 +0000440 incr ::NTESTCASE
441 if {$rc!=0} {
mistachkin00eb70d2015-04-04 00:02:07 +0000442 set errmsg "Build failed"
443 }
444 } elseif {!$seen} {
drh277b4e42014-12-29 02:55:58 +0000445 set rc 1
446 set errmsg "Test did not complete"
drhdb6bafa2015-01-09 21:54:58 +0000447 if {[file readable core]} {
448 append errmsg " - core file exists"
449 }
drh277b4e42014-12-29 02:55:58 +0000450 }
451}
452
dana7f65972015-11-02 18:32:00 +0000453#--------------------------------------------------------------------------
454# This command is invoked as the [main] routine for scripts run with the
mistachkinda9da562015-11-02 23:29:58 +0000455# "--slave" option.
dana7f65972015-11-02 18:32:00 +0000456#
457# For each test (i.e. "configure && make test" execution), the master
458# process spawns a process with the --slave option. It writes two lines
mistachkinda9da562015-11-02 23:29:58 +0000459# to the slaves stdin. The first contains a single boolean value - the
460# value of ::TRACE to use in the slave script. The second line contains a
dana7f65972015-11-02 18:32:00 +0000461# list in the same format as each element of the list passed to the
462# [run_all_test_suites] command in the master process.
463#
464# The slave then runs the "configure && make test" commands specified. It
465# exits successfully if the tests passes, or with a non-zero error code
466# otherwise.
467#
468proc run_slave_test {} {
469 # Read global vars configuration from stdin.
470 set V [gets stdin]
dand562ec22016-09-12 09:28:21 +0000471 foreach {::TRACE ::MSVC ::DRYRUN ::KEEPFILES} $V {}
dana7f65972015-11-02 18:32:00 +0000472
473 # Read the test-suite configuration from stdin.
474 set T [gets stdin]
mistachkinda9da562015-11-02 23:29:58 +0000475 foreach {title dir configOpts testtarget makeOpts cflags opts} $T {}
dana7f65972015-11-02 18:32:00 +0000476
477 # Create and switch to the test directory.
dand562ec22016-09-12 09:28:21 +0000478 set normaldir [file normalize $dir]
479 set ::env(SQLITE_TMPDIR) $normaldir
dana7f65972015-11-02 18:32:00 +0000480 trace_cmd file mkdir $dir
481 trace_cmd cd $dir
482 catch {file delete core}
483 catch {file delete test.log}
484
485 # Run the "./configure && make" commands.
486 set rc 0
487 set rc [catch [configureCommand $configOpts]]
488 if {!$rc} {
mistachkin59189432015-11-02 21:05:56 +0000489 if {[info exists ::env(TCLSH_CMD)]} {
490 set savedEnv(TCLSH_CMD) $::env(TCLSH_CMD)
491 } else {
492 unset -nocomplain savedEnv(TCLSH_CMD)
493 }
494 set ::env(TCLSH_CMD) [file nativename [info nameofexecutable]]
mistachkinda9da562015-11-02 23:29:58 +0000495 set rc [catch [makeCommand $testtarget $makeOpts $cflags $opts]]
mistachkin59189432015-11-02 21:05:56 +0000496 if {[info exists savedEnv(TCLSH_CMD)]} {
497 set ::env(TCLSH_CMD) $savedEnv(TCLSH_CMD)
498 } else {
499 unset -nocomplain ::env(TCLSH_CMD)
500 }
dana7f65972015-11-02 18:32:00 +0000501 }
502
dand562ec22016-09-12 09:28:21 +0000503 # Clean up lots of extra files if --keep was not specified.
504 if {$::KEEPFILES==0} { cleanup $normaldir }
505
dana7f65972015-11-02 18:32:00 +0000506 # Exis successfully if the test passed, or with a non-zero error code
507 # otherwise.
508 exit $rc
509}
510
mistachkinda9da562015-11-02 23:29:58 +0000511# This command is invoked in the master process each time a slave
dana7f65972015-11-02 18:32:00 +0000512# file-descriptor is readable.
513#
514proc slave_fileevent {fd T tm1} {
515 global G
mistachkinda9da562015-11-02 23:29:58 +0000516 foreach {title dir configOpts testtarget makeOpts cflags opts} $T {}
dana7f65972015-11-02 18:32:00 +0000517
518 if {[eof $fd]} {
519 fconfigure $fd -blocking 1
520 set rc [catch { close $fd }]
521
522 set errmsg {}
dane9e15052015-11-02 20:28:48 +0000523 set logfile [file join $dir test.log]
524 if {[file exists $logfile]} {
525 count_tests_and_errors [file join $dir test.log] rc errmsg
drh4380ff82015-11-03 15:16:21 +0000526 } elseif {$rc==0 && !$::DRYRUN} {
dane9e15052015-11-02 20:28:48 +0000527 set rc 1
528 set errmsg "no test.log file..."
529 }
dana7f65972015-11-02 18:32:00 +0000530
531 if {!$::TRACE} {
532 set tm2 [clock seconds]
533 set hours [expr {($tm2-$tm1)/3600}]
534 set minutes [expr {(($tm2-$tm1)/60)%60}]
535 set seconds [expr {($tm2-$tm1)%60}]
536 set tm [format (%02d:%02d:%02d) $hours $minutes $seconds]
537
538 if {$rc} {
539 set status FAIL
540 incr ::NERR
541 } else {
542 set status Ok
543 }
544
545 set n [string length $title]
drh7f8a93d2015-11-03 15:39:29 +0000546 if {$::PROGRESS_MSGS} {
547 PUTS "finished: ${title}[string repeat . [expr {53-$n}]] $status $tm"
548 } else {
549 PUTS "${title}[string repeat . [expr {63-$n}]] $status $tm"
550 }
dana7f65972015-11-02 18:32:00 +0000551 if {$errmsg!=""} {PUTS " $errmsg"}
552 flush stdout
553 }
554
555 incr G(nJob) -1
556 } else {
557 set line [gets $fd]
558 if {[string trim $line] != ""} {
559 puts "Trace : $title - \"$line\""
560 }
561 }
562}
563
564#--------------------------------------------------------------------------
565# The only argument passed to this function is a list of test-suites to
566# run. Each "test-suite" is itself a list consisting of the following
567# elements:
568#
569# * Test title (for display).
570# * The name of the directory to run the test in.
571# * The argument for [configureCommand]
572# * The first argument for [makeCommand]
573# * The second argument for [makeCommand]
574# * The third argument for [makeCommand]
mistachkinda9da562015-11-02 23:29:58 +0000575#
dana7f65972015-11-02 18:32:00 +0000576proc run_all_test_suites {alltests} {
577 global G
578 set tests $alltests
579
580 set G(nJob) 0
581
582 while {[llength $tests]>0 || $G(nJob)>0} {
583 if {$G(nJob)>=$::JOBS || [llength $tests]==0} {
584 vwait G(nJob)
585 }
586
587 if {[llength $tests]>0} {
588 set T [lindex $tests 0]
589 set tests [lrange $tests 1 end]
mistachkinda9da562015-11-02 23:29:58 +0000590 foreach {title dir configOpts testtarget makeOpts cflags opts} $T {}
drh7f8a93d2015-11-03 15:39:29 +0000591 if {$::PROGRESS_MSGS && !$::TRACE} {
dana7f65972015-11-02 18:32:00 +0000592 set n [string length $title]
drh4380ff82015-11-03 15:16:21 +0000593 PUTS "starting: ${title} at [now]"
dana7f65972015-11-02 18:32:00 +0000594 flush stdout
595 }
596
597 # Run the job.
598 #
599 set tm1 [clock seconds]
600 incr G(nJob)
mistachkin59189432015-11-02 21:05:56 +0000601 set script [file normalize [info script]]
602 set fd [open "|[info nameofexecutable] $script --slave" r+]
dana7f65972015-11-02 18:32:00 +0000603 fconfigure $fd -blocking 0
604 fileevent $fd readable [list slave_fileevent $fd $T $tm1]
dand562ec22016-09-12 09:28:21 +0000605 puts $fd [list $::TRACE $::MSVC $::DRYRUN $::KEEPFILES]
dana7f65972015-11-02 18:32:00 +0000606 puts $fd [list {*}$T]
607 flush $fd
608 }
609 }
610}
611
612proc add_test_suite {listvar name testtarget config} {
613 upvar $listvar alltests
614
mistachkin72840562014-12-23 20:22:57 +0000615 # Tcl variable $opts is used to build up the value used to set the
drh96110de2010-09-06 18:44:14 +0000616 # OPTS Makefile variable. Variable $cflags holds the value for
617 # CFLAGS. The makefile will pass OPTS to both gcc and lemon, but
618 # CFLAGS is only passed to gcc.
619 #
mistachkinda9da562015-11-02 23:29:58 +0000620 set makeOpts ""
mistachkin00eb70d2015-04-04 00:02:07 +0000621 set cflags [expr {$::MSVC ? "-Zi" : "-g"}]
drh96110de2010-09-06 18:44:14 +0000622 set opts ""
drha780d8d2015-01-03 18:59:17 +0000623 set title ${name}($testtarget)
drh0ef84d02015-04-24 17:50:37 +0000624 set configOpts $::WITHTCL
drh790b1512016-03-17 23:00:42 +0000625 set skip 0
drha780d8d2015-01-03 18:59:17 +0000626
drh149735d2015-01-01 19:53:10 +0000627 regsub -all {#[^\n]*\n} $config \n config
drh96110de2010-09-06 18:44:14 +0000628 foreach arg $config {
drh790b1512016-03-17 23:00:42 +0000629 if {$skip} {
630 set skip 0
631 continue
632 }
drh0ede9eb2015-01-10 16:49:23 +0000633 if {[regexp {^-[UD]} $arg]} {
drh96110de2010-09-06 18:44:14 +0000634 lappend opts $arg
drh0ede9eb2015-01-10 16:49:23 +0000635 } elseif {[regexp {^[A-Z]+=} $arg]} {
drh149735d2015-01-01 19:53:10 +0000636 lappend testtarget $arg
drh790b1512016-03-17 23:00:42 +0000637 } elseif {[regexp {^if:([a-z]+)(.*)} $arg all key tail]} {
638 # Arguments of the form 'if:os=="Linux"' will cause the subsequent
639 # argument to be skipped if the $tcl_platform(os) is not "Linux", for
640 # example...
641 set skip [expr !(\$::tcl_platform($key)$tail)]
drh8f455552015-01-07 14:41:18 +0000642 } elseif {[regexp {^--(enable|disable)-} $arg]} {
mistachkinda9da562015-11-02 23:29:58 +0000643 if {$::MSVC} {
644 if {$arg eq "--disable-amalgamation"} {
645 lappend makeOpts USE_AMALGAMATION=0
646 continue
647 }
648 if {$arg eq "--disable-shared"} {
649 lappend makeOpts USE_CRT_DLL=0 DYNAMIC_SHELL=0
650 continue
651 }
652 if {$arg eq "--enable-fts5"} {
653 lappend opts -DSQLITE_ENABLE_FTS5
654 continue
655 }
656 if {$arg eq "--enable-json1"} {
657 lappend opts -DSQLITE_ENABLE_JSON1
658 continue
659 }
mistachkin7d3bfa22015-11-03 06:23:33 +0000660 if {$arg eq "--enable-shared"} {
661 lappend makeOpts USE_CRT_DLL=1 DYNAMIC_SHELL=1
662 continue
663 }
mistachkinda9da562015-11-02 23:29:58 +0000664 }
drh8f455552015-01-07 14:41:18 +0000665 lappend configOpts $arg
drh96110de2010-09-06 18:44:14 +0000666 } else {
mistachkinda9da562015-11-02 23:29:58 +0000667 if {$::MSVC} {
668 if {$arg eq "-g"} {
669 lappend cflags -Zi
670 continue
671 }
672 if {[regexp -- {^-O(\d+)$} $arg all level]} then {
673 lappend makeOpts OPTIMIZATIONS=$level
674 continue
675 }
676 }
drh96110de2010-09-06 18:44:14 +0000677 lappend cflags $arg
678 }
679 }
680
mistachkinda9da562015-11-02 23:29:58 +0000681 # Disable sync to make testing faster.
682 #
683 lappend opts -DSQLITE_NO_SYNC=1
mistachkin00eb70d2015-04-04 00:02:07 +0000684
685 # Some configurations already set HAVE_USLEEP; in that case, skip it.
686 #
mistachkinda9da562015-11-02 23:29:58 +0000687 if {[lsearch -regexp $opts {^-DHAVE_USLEEP(?:=|$)}]==-1} {
688 lappend opts -DHAVE_USLEEP=1
689 }
690
691 # Add the define for this platform.
692 #
693 if {$::tcl_platform(platform)=="windows"} {
694 lappend opts -DSQLITE_OS_WIN=1
695 } else {
696 lappend opts -DSQLITE_OS_UNIX=1
mistachkin00eb70d2015-04-04 00:02:07 +0000697 }
drh96110de2010-09-06 18:44:14 +0000698
699 # Set the sub-directory to use.
700 #
701 set dir [string tolower [string map {- _ " " _} $name]]
702
mistachkinda9da562015-11-02 23:29:58 +0000703 # Join option lists into strings, using space as delimiter.
704 #
705 set makeOpts [join $makeOpts " "]
706 set cflags [join $cflags " "]
707 set opts [join $opts " "]
drh96110de2010-09-06 18:44:14 +0000708
mistachkinda9da562015-11-02 23:29:58 +0000709 lappend alltests [list \
710 $title $dir $configOpts $testtarget $makeOpts $cflags $opts]
drhd477eee2014-12-23 19:40:51 +0000711}
712
mistachkin72840562014-12-23 20:22:57 +0000713# The following procedure returns the "configure" command to be exectued for
714# the current platform, which may be Windows (via MinGW, etc).
715#
drh8f455552015-01-07 14:41:18 +0000716proc configureCommand {opts} {
mistachkin00eb70d2015-04-04 00:02:07 +0000717 if {$::MSVC} return [list]; # This is not needed for MSVC.
drh8f455552015-01-07 14:41:18 +0000718 set result [list trace_cmd exec]
mistachkin72840562014-12-23 20:22:57 +0000719 if {$::tcl_platform(platform)=="windows"} {
720 lappend result sh
721 }
drh8f455552015-01-07 14:41:18 +0000722 lappend result $::SRCDIR/configure --enable-load-extension
723 foreach x $opts {lappend result $x}
724 lappend result >& test.log
mistachkin72840562014-12-23 20:22:57 +0000725}
726
727# The following procedure returns the "make" command to be executed for the
728# specified targets, compiler flags, and options.
729#
mistachkinda9da562015-11-02 23:29:58 +0000730proc makeCommand { targets makeOpts cflags opts } {
mistachkin00eb70d2015-04-04 00:02:07 +0000731 set result [list trace_cmd exec]
732 if {$::MSVC} {
733 set nmakeDir [file nativename $::SRCDIR]
mistachkin98fea322015-11-03 02:47:11 +0000734 set nmakeFile [file nativename [file join $nmakeDir Makefile.msc]]
mistachkinda9da562015-11-02 23:29:58 +0000735 lappend result nmake /f $nmakeFile TOP=$nmakeDir
drh8ef24b82016-08-01 15:00:00 +0000736 if {[regexp {USE_STDCALL=1} $cflags]} {
737 lappend result USE_STDCALL=1
738 }
mistachkin00eb70d2015-04-04 00:02:07 +0000739 } else {
mistachkinda9da562015-11-02 23:29:58 +0000740 lappend result make
mistachkin00eb70d2015-04-04 00:02:07 +0000741 }
mistachkinda9da562015-11-02 23:29:58 +0000742 foreach makeOpt $makeOpts {
743 lappend result $makeOpt
744 }
745 lappend result clean
mistachkin72840562014-12-23 20:22:57 +0000746 foreach target $targets {
747 lappend result $target
748 }
749 lappend result CFLAGS=$cflags OPTS=$opts >>& test.log
750}
751
drh8f455552015-01-07 14:41:18 +0000752# The following procedure prints its arguments if ::TRACE is true.
753# And it executes the command of its arguments in the calling context
754# if ::DRYRUN is false.
drhd477eee2014-12-23 19:40:51 +0000755#
drh8f455552015-01-07 14:41:18 +0000756proc trace_cmd {args} {
757 if {$::TRACE} {
drhe31dc592015-08-14 12:53:37 +0000758 PUTS $args
drh8f455552015-01-07 14:41:18 +0000759 }
dana7f65972015-11-02 18:32:00 +0000760 set res ""
drh8f455552015-01-07 14:41:18 +0000761 if {!$::DRYRUN} {
dana7f65972015-11-02 18:32:00 +0000762 set res [uplevel 1 $args]
drh96110de2010-09-06 18:44:14 +0000763 }
dana7f65972015-11-02 18:32:00 +0000764 return $res
drh96110de2010-09-06 18:44:14 +0000765}
766
767
768# This proc processes the command line options passed to this script.
769# Currently the only option supported is "-makefile", default
770# "releasetest.mk". Set the ::MAKEFILE variable to the value of this
771# option.
772#
773proc process_options {argv} {
drhd477eee2014-12-23 19:40:51 +0000774 set ::SRCDIR [file normalize [file dirname [file dirname $::argv0]]]
drh7f8a93d2015-11-03 15:39:29 +0000775 set ::QUICK 0
776 set ::MSVC 0
777 set ::BUILDONLY 0
778 set ::DRYRUN 0
779 set ::TRACE 0
780 set ::JOBS 1
781 set ::PROGRESS_MSGS 0
782 set ::WITHTCL {}
drheedeb922016-09-09 12:29:57 +0000783 set ::FORCE 0
dand562ec22016-09-12 09:28:21 +0000784 set ::KEEPFILES 0 ;# Keep extra files after test run
drh2eeb7ae2014-10-10 17:44:03 +0000785 set config {}
drh96110de2010-09-06 18:44:14 +0000786 set platform $::tcl_platform(os)-$::tcl_platform(machine)
787
788 for {set i 0} {$i < [llength $argv]} {incr i} {
drhd477eee2014-12-23 19:40:51 +0000789 set x [lindex $argv $i]
790 if {[regexp {^--[a-z]} $x]} {set x [string range $x 1 end]}
drhf167a402015-01-07 18:44:59 +0000791 switch -glob -- $x {
dana7f65972015-11-02 18:32:00 +0000792 -slave {
793 run_slave_test
794 exit
795 }
796
drhfe376582016-09-09 13:23:36 +0000797 # Undocumented legacy option: --srcdir DIRECTORY
798 #
799 # DIRECTORY is the root of the SQLite checkout. This sets the
800 # SRCDIR global variable. But that variable is already set
801 # automatically so there really is no reason to have this option.
802 #
drhd477eee2014-12-23 19:40:51 +0000803 -srcdir {
drh96110de2010-09-06 18:44:14 +0000804 incr i
drhd477eee2014-12-23 19:40:51 +0000805 set ::SRCDIR [file normalize [lindex $argv $i]]
drh96110de2010-09-06 18:44:14 +0000806 }
807
808 -platform {
809 incr i
810 set platform [lindex $argv $i]
811 }
812
dana7f65972015-11-02 18:32:00 +0000813 -jobs {
814 incr i
815 set ::JOBS [lindex $argv $i]
816 }
817
drh7f8a93d2015-11-03 15:39:29 +0000818 -progress {
819 set ::PROGRESS_MSGS 1
820 }
821
drh96110de2010-09-06 18:44:14 +0000822 -quick {
drhd477eee2014-12-23 19:40:51 +0000823 set ::QUICK 1
drh96110de2010-09-06 18:44:14 +0000824 }
drh5bfff9d2015-01-08 01:05:42 +0000825 -veryquick {
826 set ::QUICK 2
drh96110de2010-09-06 18:44:14 +0000827 }
drh2eeb7ae2014-10-10 17:44:03 +0000828
829 -config {
830 incr i
831 set config [lindex $argv $i]
832 }
drhd477eee2014-12-23 19:40:51 +0000833
mistachkin00eb70d2015-04-04 00:02:07 +0000834 -msvc {
835 set ::MSVC 1
836 }
837
drhd477eee2014-12-23 19:40:51 +0000838 -buildonly {
839 set ::BUILDONLY 1
840 }
841
842 -dryrun {
843 set ::DRYRUN 1
844 }
845
drheedeb922016-09-09 12:29:57 +0000846 -force -
847 -f {
848 set ::FORCE 1
849 }
850
drh8f455552015-01-07 14:41:18 +0000851 -trace {
852 set ::TRACE 1
853 }
854
drhd477eee2014-12-23 19:40:51 +0000855 -info {
drhe31dc592015-08-14 12:53:37 +0000856 PUTS "Command-line Options:"
857 PUTS " --srcdir $::SRCDIR"
858 PUTS " --platform [list $platform]"
859 PUTS " --config [list $config]"
drh905da632015-06-10 18:53:09 +0000860 if {$::QUICK} {
drhe31dc592015-08-14 12:53:37 +0000861 if {$::QUICK==1} {PUTS " --quick"}
862 if {$::QUICK==2} {PUTS " --veryquick"}
drh905da632015-06-10 18:53:09 +0000863 }
drhe31dc592015-08-14 12:53:37 +0000864 if {$::MSVC} {PUTS " --msvc"}
865 if {$::BUILDONLY} {PUTS " --buildonly"}
866 if {$::DRYRUN} {PUTS " --dryrun"}
867 if {$::TRACE} {PUTS " --trace"}
868 PUTS "\nAvailable --platform options:"
drhd477eee2014-12-23 19:40:51 +0000869 foreach y [lsort [array names ::Platforms]] {
drhe31dc592015-08-14 12:53:37 +0000870 PUTS " [list $y]"
drhd477eee2014-12-23 19:40:51 +0000871 }
drhe31dc592015-08-14 12:53:37 +0000872 PUTS "\nAvailable --config options:"
drhd477eee2014-12-23 19:40:51 +0000873 foreach y [lsort [array names ::Configs]] {
drhe31dc592015-08-14 12:53:37 +0000874 PUTS " [list $y]"
drhd477eee2014-12-23 19:40:51 +0000875 }
876 exit
877 }
mistachkin00eb70d2015-04-04 00:02:07 +0000878
879 -g {
mistachkinda9da562015-11-02 23:29:58 +0000880 lappend ::EXTRACONFIG [lindex $argv $i]
mistachkin00eb70d2015-04-04 00:02:07 +0000881 }
882
dand562ec22016-09-12 09:28:21 +0000883 -keep {
884 set ::KEEPFILES 1
885 }
886
drh0ef84d02015-04-24 17:50:37 +0000887 -with-tcl=* {
888 set ::WITHTCL -$x
889 }
890
drhf167a402015-01-07 18:44:59 +0000891 -D* -
drh5bfff9d2015-01-08 01:05:42 +0000892 -O* -
drhf167a402015-01-07 18:44:59 +0000893 -enable-* -
894 -disable-* -
895 *=* {
896 lappend ::EXTRACONFIG [lindex $argv $i]
897 }
mistachkin72840562014-12-23 20:22:57 +0000898
drh96110de2010-09-06 18:44:14 +0000899 default {
drh573d88e2016-01-03 11:17:04 +0000900 PUTSERR ""
901 PUTSERR [string trim $::USAGE_MESSAGE]
drh96110de2010-09-06 18:44:14 +0000902 exit -1
903 }
904 }
905 }
906
drh96110de2010-09-06 18:44:14 +0000907 if {0==[info exists ::Platforms($platform)]} {
drhe31dc592015-08-14 12:53:37 +0000908 PUTS "Unknown platform: $platform"
drhd63fbb72015-11-13 12:52:34 +0000909 PUTSNNL "Set the -platform option to "
drh96110de2010-09-06 18:44:14 +0000910 set print [list]
911 foreach p [array names ::Platforms] {
912 lappend print "\"$p\""
913 }
914 lset print end "or [lindex $print end]"
drhe31dc592015-08-14 12:53:37 +0000915 PUTS "[join $print {, }]."
drh96110de2010-09-06 18:44:14 +0000916 exit
917 }
918
drh2eeb7ae2014-10-10 17:44:03 +0000919 if {$config!=""} {
drhe35626f2014-10-10 17:47:00 +0000920 if {[llength $config]==1} {lappend config fulltest}
drh2eeb7ae2014-10-10 17:44:03 +0000921 set ::CONFIGLIST $config
922 } else {
drh71258ab2015-11-04 16:34:58 +0000923 if {$::JOBS>1} {
924 set ::CONFIGLIST {}
925 foreach {target zConfig} [lreverse $::Platforms($platform)] {
926 append ::CONFIGLIST [format " %-25s %s\n" \
927 [list $zConfig] [list $target]]
928 }
929 } else {
930 set ::CONFIGLIST $::Platforms($platform)
931 }
drh2eeb7ae2014-10-10 17:44:03 +0000932 }
drhe31dc592015-08-14 12:53:37 +0000933 PUTS "Running the following test configurations for $platform:"
934 PUTS " [string trim $::CONFIGLIST]"
drhd63fbb72015-11-13 12:52:34 +0000935 PUTSNNL "Flags:"
936 if {$::PROGRESS_MSGS} {PUTSNNL " --progress"}
937 if {$::DRYRUN} {PUTSNNL " --dryrun"}
938 if {$::BUILDONLY} {PUTSNNL " --buildonly"}
939 if {$::MSVC} {PUTSNNL " --msvc"}
drh5bfff9d2015-01-08 01:05:42 +0000940 switch -- $::QUICK {
drhd63fbb72015-11-13 12:52:34 +0000941 1 {PUTSNNL " --quick"}
942 2 {PUTSNNL " --veryquick"}
drh5bfff9d2015-01-08 01:05:42 +0000943 }
drhd63fbb72015-11-13 12:52:34 +0000944 if {$::JOBS>1} {PUTSNNL " --jobs $::JOBS"}
drhe31dc592015-08-14 12:53:37 +0000945 PUTS ""
drh96110de2010-09-06 18:44:14 +0000946}
947
drh2c331832016-09-09 13:17:26 +0000948# Check to see if there are uncommitted changes in the SQLite source
949# checkout. Exit if there are. Except: Do nothing if the --force
950# flag is used. Also, ignore this test if the fossil binary is
951# unavailable, or if the source tree is not a valid fossil checkout.
drh1fbd0082016-09-08 23:12:08 +0000952#
953proc check_uncommitted {} {
drheedeb922016-09-09 12:29:57 +0000954 if {$::FORCE} return
955 set pwd [pwd]
956 cd $::SRCDIR
drh1fbd0082016-09-08 23:12:08 +0000957 if {[catch {exec fossil changes} res]==0 && [string trim $res]!=""} {
drheedeb922016-09-09 12:29:57 +0000958 puts "ERROR: The check-out contains uncommitted changes:"
drh1fbd0082016-09-08 23:12:08 +0000959 puts $res
drheedeb922016-09-09 12:29:57 +0000960 puts "Use the -f or --force options to override"
961 exit 1
drh1fbd0082016-09-08 23:12:08 +0000962 }
drheedeb922016-09-09 12:29:57 +0000963 cd $pwd
drh1fbd0082016-09-08 23:12:08 +0000964}
965
dand562ec22016-09-12 09:28:21 +0000966# A test run has just finished in directory $dir. This command deletes all
967# non-essential files from the directory. Specifically, everything except
968#
969# * The "testfixture" and "sqlite3" binaries,
970# * The "test-out.log" and "test.log" log files.
971#
972proc cleanup {dir} {
973 set K(testfixture) 1
974 set K(testfixture.exe) 1
975 set K(sqlite3) 1
976 set K(sqlite3.exe) 1
977 set K(test-out.txt) 1
978 set K(test.log) 1
979
980 foreach f [glob -nocomplain [file join $dir *]] {
981 set tail [file tail $f]
982 if {[info exists K($tail)]==0} {
983 file delete -force $f
984 }
985 }
986}
987
drh1fbd0082016-09-08 23:12:08 +0000988
drh96110de2010-09-06 18:44:14 +0000989# Main routine.
990#
991proc main {argv} {
992
993 # Process any command line options.
drhf167a402015-01-07 18:44:59 +0000994 set ::EXTRACONFIG {}
drh96110de2010-09-06 18:44:14 +0000995 process_options $argv
drh1fbd0082016-09-08 23:12:08 +0000996 if {!$::DRYRUN} check_uncommitted
drhe31dc592015-08-14 12:53:37 +0000997 PUTS [string repeat * 79]
drh96110de2010-09-06 18:44:14 +0000998
drh97876ee2014-12-24 23:35:36 +0000999 set ::NERR 0
1000 set ::NTEST 0
drh277b4e42014-12-29 02:55:58 +00001001 set ::NTESTCASE 0
1002 set ::NERRCASE 0
drh5bfff9d2015-01-08 01:05:42 +00001003 set ::SQLITE_VERSION {}
drhd477eee2014-12-23 19:40:51 +00001004 set STARTTIME [clock seconds]
drh96110de2010-09-06 18:44:14 +00001005 foreach {zConfig target} $::CONFIGLIST {
mistachkin00eb70d2015-04-04 00:02:07 +00001006 if {$::MSVC && ($zConfig eq "Sanitize" || "checksymbols" in $target
1007 || "valgrindtest" in $target)} {
drhe31dc592015-08-14 12:53:37 +00001008 PUTS "Skipping $zConfig / $target for MSVC..."
mistachkin00eb70d2015-04-04 00:02:07 +00001009 continue
1010 }
drh5bfff9d2015-01-08 01:05:42 +00001011 if {$target ne "checksymbols"} {
1012 switch -- $::QUICK {
drh905da632015-06-10 18:53:09 +00001013 1 {set target quicktest}
drh5bfff9d2015-01-08 01:05:42 +00001014 2 {set target smoketest}
1015 }
mistachkin00eb70d2015-04-04 00:02:07 +00001016 if {$::BUILDONLY} {
1017 set target testfixture
drh7f8a93d2015-11-03 15:39:29 +00001018 if {$::tcl_platform(platform)=="windows"} {
1019 append target .exe
1020 }
mistachkin00eb70d2015-04-04 00:02:07 +00001021 }
drh5bfff9d2015-01-08 01:05:42 +00001022 }
drhf167a402015-01-07 18:44:59 +00001023 set config_options [concat $::Configs($zConfig) $::EXTRACONFIG]
drh96110de2010-09-06 18:44:14 +00001024
drhd477eee2014-12-23 19:40:51 +00001025 incr NTEST
dana7f65972015-11-02 18:32:00 +00001026 add_test_suite all $zConfig $target $config_options
drh96110de2010-09-06 18:44:14 +00001027
1028 # If the configuration included the SQLITE_DEBUG option, then remove
1029 # it and run veryquick.test. If it did not include the SQLITE_DEBUG option
1030 # add it and run veryquick.test.
drh5bfff9d2015-01-08 01:05:42 +00001031 if {$target!="checksymbols" && $target!="valgrindtest"
drhf3320712015-04-25 13:39:29 +00001032 && $target!="fuzzoomtest" && !$::BUILDONLY && $::QUICK<2} {
danb136e902012-12-10 10:22:48 +00001033 set debug_idx [lsearch -glob $config_options -DSQLITE_DEBUG*]
drhbd41d562014-12-30 20:40:32 +00001034 set xtarget $target
drhaf700b32014-12-31 20:35:11 +00001035 regsub -all {fulltest[a-z]*} $xtarget test xtarget
drhf3320712015-04-25 13:39:29 +00001036 regsub -all {fuzzoomtest} $xtarget fuzztest xtarget
danb136e902012-12-10 10:22:48 +00001037 if {$debug_idx < 0} {
drhd477eee2014-12-23 19:40:51 +00001038 incr NTEST
drhdc6de472017-05-25 11:39:50 +00001039 append config_options " -DSQLITE_DEBUG=1 -DSQLITE_EXTRA_IFNULLROW=1"
dana7f65972015-11-02 18:32:00 +00001040 add_test_suite all "${zConfig}_debug" $xtarget $config_options
danb136e902012-12-10 10:22:48 +00001041 } else {
drhd477eee2014-12-23 19:40:51 +00001042 incr NTEST
drhbd41d562014-12-30 20:40:32 +00001043 regsub { *-DSQLITE_MEMDEBUG[^ ]* *} $config_options { } config_options
1044 regsub { *-DSQLITE_DEBUG[^ ]* *} $config_options { } config_options
dana7f65972015-11-02 18:32:00 +00001045 add_test_suite all "${zConfig}_ndebug" $xtarget $config_options
danb136e902012-12-10 10:22:48 +00001046 }
drh96110de2010-09-06 18:44:14 +00001047 }
drh96110de2010-09-06 18:44:14 +00001048 }
drh96110de2010-09-06 18:44:14 +00001049
dana7f65972015-11-02 18:32:00 +00001050 run_all_test_suites $all
1051
drhd477eee2014-12-23 19:40:51 +00001052 set elapsetime [expr {[clock seconds]-$STARTTIME}]
drh97876ee2014-12-24 23:35:36 +00001053 set hr [expr {$elapsetime/3600}]
1054 set min [expr {($elapsetime/60)%60}]
1055 set sec [expr {$elapsetime%60}]
1056 set etime [format (%02d:%02d:%02d) $hr $min $sec]
drh573d88e2016-01-03 11:17:04 +00001057 if {$::JOBS>1} {append etime " $::JOBS cores"}
1058 if {[catch {exec hostname} HNAME]==0} {append etime " on $HNAME"}
drhe31dc592015-08-14 12:53:37 +00001059 PUTS [string repeat * 79]
drhb1031f02015-09-10 15:20:49 +00001060 incr ::NERRCASE $::NERR
drhe31dc592015-08-14 12:53:37 +00001061 PUTS "$::NERRCASE failures out of $::NTESTCASE tests in $etime"
drh5bfff9d2015-01-08 01:05:42 +00001062 if {$::SQLITE_VERSION ne ""} {
drhe31dc592015-08-14 12:53:37 +00001063 PUTS "SQLite $::SQLITE_VERSION"
drh96110de2010-09-06 18:44:14 +00001064 }
1065}
1066
1067main $argv