diff options
author | Jan Mercl <0xjnml@gmail.com> | 2020-07-26 22:36:18 +0200 |
---|---|---|
committer | Jan Mercl <0xjnml@gmail.com> | 2020-07-26 22:36:18 +0200 |
commit | b406626c64313ae348996c243a0a05d3f6ed2c3c (patch) | |
tree | 0eaae4fa6348b150568725e6f2ec0b4c4203b5f8 /testdata/tcl/all.test | |
parent | d8d9f40ce80062793349c0ea47520b6878312f4a (diff) |
release v1.4.0-beta1v1.4.0-beta1
Diffstat (limited to 'testdata/tcl/all.test')
-rw-r--r-- | testdata/tcl/all.test | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/testdata/tcl/all.test b/testdata/tcl/all.test new file mode 100644 index 0000000..46e8115 --- /dev/null +++ b/testdata/tcl/all.test @@ -0,0 +1,51 @@ +# 2001 September 15 +# +# 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 all tests. +# + +set testdir [file dirname $argv0] +source $testdir/permutations.test + +run_test_suite full + +ifcapable rbu { run_test_suite rbu } +run_test_suite no_optimization +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 +run_test_suite prepare +run_test_suite mmap + +if {$::tcl_platform(platform)=="unix"} { + ifcapable !default_autovacuum { + run_test_suite autovacuum_crash + } +} + +finish_test |