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

Run shell*.test modules with "make mdevtest".

FossilOrigin-Name: 76c471061809307c1922a9460f1ea37291ff5f4dc11a71af594351e875fdc8e3
This commit is contained in:
drh
2024-03-11 18:21:02 +00:00
parent 5dfff386e5
commit c6481e0289
5 changed files with 23 additions and 14 deletions

View File

@ -681,13 +681,22 @@ proc add_build_job {buildname target} {
set dirname "[string tolower [string map {- _} $buildname]]_$target"
set dirname "testrunner_bld_$dirname"
switch $target {
testfixture -
testfixture.exe {
set mktarget coretestprogs
}
default {
set mktarget $target
}
}
set id [add_job \
-displaytype bld \
-displayname "Build $buildname ($target)" \
-dirname $dirname \
-build $buildname \
-cmd "$TRG(makecmd) $target" \
-cmd "$TRG(makecmd) $mktarget" \
-priority 3
]