1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-29 08:01:23 +03:00

Ensure that tests like "rbu.test" and "notify2.test" that are only run by specific configurations during release testing are run for both release and debug versions of the tests.

FossilOrigin-Name: 911df43f98297bf645688dc51e988106a0297cb60bb97dde699c2848404fcf72
This commit is contained in:
dan
2021-02-25 15:50:19 +00:00
parent e9cfe87843
commit ce5de60ff9
3 changed files with 16 additions and 11 deletions

View File

@ -586,9 +586,15 @@ proc main_tests {args} {
puts "$config \"$target\""
if {$bNodebug==0 && $bNosynthetic==0} {
set iHas [string first SQLITE_DEBUG $::Configs($config)]
set dtarget test
if {$target=="tcltest"} {
set dtarget tcltest
set dtarget [list]
set iQTI [lsearch -glob $target QUICKTEST_*]
if {$iQTI>=0} {
lappend dtarget [lindex $target $iQTI]
}
if {[lsearch $target tcltest]>=0} {
lappend dtarget tcltest
} else {
lappend dtarget test
}
if {$iHas>=0} {
puts "$config-ndebug \"$dtarget\""