1# 2001 September 15 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 runs all tests. 12# 13 14set testdir [file dirname $argv0] 15source $testdir/permutations.test 16 17run_test_suite full 18 19run_test_suite no_optimization 20run_test_suite memsubsys1 21run_test_suite memsubsys2 22run_test_suite singlethread 23run_test_suite multithread 24run_test_suite onefile 25run_test_suite utf16 26run_test_suite exclusive 27run_test_suite persistent_journal 28run_test_suite persistent_journal_error 29run_test_suite no_journal 30run_test_suite no_journal_error 31run_test_suite autovacuum_ioerr 32run_test_suite no_mutex_try 33run_test_suite fullmutex 34run_test_suite journaltest 35run_test_suite inmemory_journal 36run_test_suite pcache0 37run_test_suite pcache10 38run_test_suite pcache50 39run_test_suite pcache90 40run_test_suite pcache100 41 42if {$::tcl_platform(platform)=="unix"} { 43 ifcapable !default_autovacuum { 44 run_test_suite autovacuum_crash 45 } 46} 47 48finish_test 49 50 51