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:
@ -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\""
|
||||
|
Reference in New Issue
Block a user