1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-02 17:26:44 +03:00

Minor change to the "mdevtest" and "sdevtest" in testrunner.tcl, to make it

easier to add configurations in branches.

FossilOrigin-Name: 9349d94e05dcf266b02afcd89f1e433cdc45f23e8536b2f3f9aa242d5d89c307
This commit is contained in:
drh
2024-03-13 16:32:05 +00:00
parent 6bb6a9c941
commit 81a244c514
3 changed files with 17 additions and 9 deletions

View File

@ -885,11 +885,19 @@ proc add_jobs_from_cmdline {patternlist} {
}
mdevtest {
add_devtest_jobs {All-O0 All-Debug} [lrange $patternlist 1 end]
set config_set {
All-O0
All-Debug
}
add_devtest_jobs $config_set [lrange $patternlist 1 end]
}
sdevtest {
add_devtest_jobs {All-Sanitize All-Debug} [lrange $patternlist 1 end]
set config_set {
All-Sanitize
All-Debug
}
add_devtest_jobs $config_set [lrange $patternlist 1 end]
}
release {