1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-30 19:03:16 +03:00

Avoid running the "no_mutex_try" tests with SQLITE_ENABLE_SETLK_TIMEOUT builds as part of the release test.

FossilOrigin-Name: 6b4e1344a28c213cbe8fb97f7f3f6688de93fb73ed96bf460ff74c959da1a712
This commit is contained in:
dan
2023-12-15 14:33:50 +00:00
parent f062506002
commit 76dbb58700
4 changed files with 18 additions and 13 deletions

View File

@ -30,7 +30,7 @@ namespace eval trd {
set tcltest(osx.Locking-Style) veryquick
set tcltest(osx.Have-Not) veryquick
set tcltest(osx.Apple) all
set tcltest(osx.Apple) all_less_no_mutex_try
set tcltest(win.Stdcall) veryquick
set tcltest(win.Have-Not) veryquick
@ -367,6 +367,9 @@ proc trd_configs {platform bld} {
set clist $all_configs
} elseif {$clist=="all_plus_autovacuum_crash"} {
set clist [concat $all_configs autovacuum_crash]
} elseif {$clist=="all_less_no_mutex_try"} {
set idx [lsearch $all_configs no_mutex_try]
set clist [lreplace $all_configs $idx $idx]
}
}