2001-09-16 04:13:26 +04:00
|
|
|
# 2001 September 15
|
2000-05-30 03:48:22 +04:00
|
|
|
#
|
2001-09-16 04:13:26 +04:00
|
|
|
# The author disclaims copyright to this source code. In place of
|
|
|
|
# a legal notice, here is a blessing:
|
2000-05-30 03:48:22 +04:00
|
|
|
#
|
2001-09-16 04:13:26 +04:00
|
|
|
# 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.
|
2000-05-30 03:48:22 +04:00
|
|
|
#
|
|
|
|
#***********************************************************************
|
|
|
|
# This file runs all tests.
|
|
|
|
#
|
|
|
|
|
|
|
|
set testdir [file dirname $argv0]
|
2008-06-21 22:07:37 +04:00
|
|
|
source $testdir/permutations.test
|
2000-12-10 21:23:50 +03:00
|
|
|
|
2010-06-15 10:56:37 +04:00
|
|
|
run_test_suite full
|
|
|
|
|
2018-09-06 23:33:11 +03:00
|
|
|
ifcapable rbu { run_test_suite rbu }
|
2010-12-07 17:32:28 +03:00
|
|
|
run_test_suite no_optimization
|
2010-06-15 10:56:37 +04:00
|
|
|
run_test_suite memsubsys1
|
|
|
|
run_test_suite memsubsys2
|
|
|
|
run_test_suite singlethread
|
|
|
|
run_test_suite multithread
|
|
|
|
run_test_suite onefile
|
|
|
|
run_test_suite utf16
|
|
|
|
run_test_suite exclusive
|
|
|
|
run_test_suite persistent_journal
|
|
|
|
run_test_suite persistent_journal_error
|
|
|
|
run_test_suite no_journal
|
|
|
|
run_test_suite no_journal_error
|
|
|
|
run_test_suite autovacuum_ioerr
|
|
|
|
run_test_suite no_mutex_try
|
|
|
|
run_test_suite fullmutex
|
|
|
|
run_test_suite journaltest
|
|
|
|
run_test_suite inmemory_journal
|
|
|
|
run_test_suite pcache0
|
|
|
|
run_test_suite pcache10
|
|
|
|
run_test_suite pcache50
|
|
|
|
run_test_suite pcache90
|
|
|
|
run_test_suite pcache100
|
2011-06-27 20:55:50 +04:00
|
|
|
run_test_suite prepare
|
2013-05-23 14:15:46 +04:00
|
|
|
run_test_suite mmap
|
2010-06-07 21:47:26 +04:00
|
|
|
|
2010-06-15 10:56:37 +04:00
|
|
|
if {$::tcl_platform(platform)=="unix"} {
|
2005-01-08 05:35:44 +03:00
|
|
|
ifcapable !default_autovacuum {
|
2010-06-15 10:56:37 +04:00
|
|
|
run_test_suite autovacuum_crash
|
2005-01-08 05:35:44 +03:00
|
|
|
}
|
2004-06-26 23:35:29 +04:00
|
|
|
}
|
|
|
|
|
2010-06-07 21:47:26 +04:00
|
|
|
finish_test
|