-C More\sdocumentation\sspellcheck\sand\scleanup.\sNo\schanges\sto\scode.\s(CVS\s5260)
-D 2008-06-21T11:20:48
+C Remove\smutex2.test.\sIt\swill\sbe\sreplaced\slater\stoday\sby\spermutations.test.\s(CVS\s5261)
+D 2008-06-21T12:15:04
F Makefile.arm-wince-mingw32ce-gcc ac5f7b2cef0cd850d6f755ba6ee4ab961b1fadf7
F Makefile.in ff6f90048555a0088f6a4b7406bed5e55a7c4eff
F Makefile.linux-gcc d53183f4aa6a9192d249731c90dbdffbd2c68654
F test/misc7.test 26e0d948a413bca61ed031159907a03d64647409
F test/misuse.test 30b3a458e5a70c31e74c291937b6c82204c59f33
F test/mutex1.test f643fe0753daaed30fa233a83e690f0cff9b596e
-F test/mutex2.test 6c8f4a5425a27088bc2ad107c71b7abbc2d8534d
F test/nan.test 14c41572ff52dbc740b1c3303dd313a90dc6084c
F test/notnull.test 44d600f916b770def8b095a9962dbe3be5a70d82
F test/null.test a8b09b8ed87852742343b33441a9240022108993
F test/printf.test c3405535b418d454e8a52196a0fc592ec9eec58d
F test/progress.test 5b075c3c790c7b2a61419bc199db87aaf48b8301 x
F test/ptrchng.test 83150cb7b513e33cce90fdc68f4b1817551857c0
-F test/quick.test 58a082b4cd30ed7d5a06129a6b1ec2550610806b
+F test/quick.test 48fb66d9c7216c3ff72c7619b264be6c427d7bac
F test/quote.test 215897dbe8de1a6f701265836d6601cc6ed103e6
F test/rdonly.test b34db316525440d3b42c32e83942c02c37d28ef0
F test/reindex.test 38b138abe36bf9a08c791ed44d9f76cd6b97b78b
F test/substr.test 4be572ac017143e59b4058dc75c91a0d0dc6d4e0
F test/sync.test ded6b39d8d8ca3c0c5518516c6371b3316d3e3a3
F test/table.test 13b1c2e2fb4727b35ee1fb7641fc469214fd2455
-F test/tableapi.test bb7a41e8a9b577a56e40325cb39dab652bee565c
+F test/tableapi.test 892208d49e7be4817a4d3e4f641dbcbbee8cd03c
F test/tclsqlite.test 3dfb48f46de4353376fad835390b493ba066b4dc
F test/tempdb.test b88ac8a19823cf771d742bf61eef93ef337c06b1
F test/temptable.test 19b851b9e3e64d91e9867619b2a3f5fffee6e125
F tool/speedtest2.tcl ee2149167303ba8e95af97873c575c3e0fab58ff
F tool/speedtest8.c 1dbced29de5f59ba2ebf877edcadf171540374d1
F tool/speedtest8inst1.c 293327bc76823f473684d589a8160bde1f52c14e
-P 3d413e9b466a871650597407016131df4d07b3d2
-R 3068395447a488d855036458cdac3d08
-U mihailim
-Z cc370ba2bcd1d75c705436aa5f9d6ee7
+P 8c457fb08b93aa1aa9f62d0ec31755d74416e16b
+R ba7419dbfecd1a68feccea2f76855031
+U danielk1977
+Z 32157deb1b7267717504f46d7018eab5
-8c457fb08b93aa1aa9f62d0ec31755d74416e16b
\ No newline at end of file
+98a6a0a30f16cbc60c655663b5895429a34da0ba
\ No newline at end of file
+++ /dev/null
-# 2007 March 26
-#
-# The author disclaims copyright to this source code. In place of
-# a legal notice, here is a blessing:
-#
-# May you do good and not evil.
-# May you find forgiveness for yourself and forgive others.
-# May you share freely, never taking more than you give.
-#
-#***********************************************************************
-#
-# This file runs some other test files after calling sqlite3_config to
-# set the thread-safety mode to SQLITE_CONFIG_SINGLETHREAD and
-# SQLITE_CONFIG_MULTITHREAD (instead of the default SQLITE_CONFIG_SERIALIZED).
-#
-# $Id: mutex2.test,v 1.1 2008/06/18 17:09:10 danielk1977 Exp $
-
-set testdir [file dirname $argv0]
-source $testdir/tester.tcl
-
-ifcapable {!pager_pragmas} {
- finish_test
- return
-}
-
-rename finish_test really_finish_test2
-proc finish_test {} {}
-set ISQUICK 1
-
-rename do_test really_do_test
-proc do_test {args} {
- set sc [concat really_do_test "mutex2-${::thread_mode}.[lindex $args 0]" \
- [lrange $args 1 end]]
- eval $sc
-}
-
-foreach ::thread_mode {singlethread multithread} {
- do_test mutex2-$::thread_mode.0 {
- catch {db close}
- sqlite3_shutdown
- sqlite3_config $::thread_mode
- } SQLITE_OK
-
- source $testdir/delete.test
- source $testdir/delete2.test
- source $testdir/insert.test
- source $testdir/rollback.test
- source $testdir/select1.test
- source $testdir/select2.test
- source $testdir/trans.test
- source $testdir/update.test
- source $testdir/vacuum.test
- source $testdir/types.test
- source $testdir/types2.test
- source $testdir/types3.test
-
- #source $testdir/malloc.test
- #source $testdir/ioerr.test
-}
-
-do_test mutex2-X {
- catch {db close}
- sqlite3_shutdown
- sqlite3_config serialized
-} SQLITE_OK
-
-rename finish_test ""
-rename really_finish_test2 finish_test
-rename do_test ""
-rename really_do_test do_test
-finish_test
-
#***********************************************************************
# This file runs all tests.
#
-# $Id: quick.test,v 1.79 2008/06/18 17:09:10 danielk1977 Exp $
+# $Id: quick.test,v 1.80 2008/06/21 12:15:04 danielk1977 Exp $
proc lshift {lvar} {
upvar $lvar l
misuse.test
mutex2.test
onefile.test
+ permutations.test
quick.test
soak.test
speed1.test
# focus of this file is testing the sqlite_exec_printf() and
# sqlite_get_table_printf() APIs.
#
-# $Id: tableapi.test,v 1.17 2008/06/21 08:12:15 danielk1977 Exp $
+# $Id: tableapi.test,v 1.18 2008/06/21 12:15:04 danielk1977 Exp $
set testdir [file dirname $argv0]
source $testdir/tester.tcl
source $testdir/malloc_common.tcl
}
-db close
-sqlite3_shutdown
-sqlite3_config_pagecache 4096 24
-sqlite3_config_scratch 25000 1
-sqlite3_initialize
-sqlite3 db test.db
-
do_test tableapi-1.0 {
set ::dbx [sqlite3_open test.db]
catch {sqlite_exec_printf $::dbx {DROP TABLE xyz} {}}