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

Add a case to testrunner.tcl so that mdevtest can run on openbsd.

FossilOrigin-Name: e904b37fb2621e6bd5e761f3ecb75adb34350f2d1d7b229e655e74bc6a2f5321
This commit is contained in:
dan
2024-10-21 14:24:27 +00:00
parent 32d255851e
commit e2f294a1e5
3 changed files with 16 additions and 7 deletions

View File

@ -245,6 +245,15 @@ switch -nocase -glob -- $tcl_platform(os) {
set TRG(run) run.sh
set TRG(runcmd) "bash run.sh"
}
*openbsd* {
set TRG(platform) linux
set TRG(make) make.sh
set TRG(makecmd) "sh make.sh"
set TRG(testfixture) testfixture
set TRG(shell) sqlite3
set TRG(run) run.sh
set TRG(runcmd) "sh run.sh"
}
*win* {
set TRG(platform) win
set TRG(make) make.bat