1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-30 19:03:16 +03:00

Fix another testrunner.tcl problem on windows.

FossilOrigin-Name: 7805844bc4433ae088dae6d54eb972e082c5a3df06e844cfc8b69e7d97aeb432
This commit is contained in:
dan
2024-03-11 20:34:02 +00:00
parent f4783d4d7f
commit 38152d9d04
3 changed files with 9 additions and 9 deletions

View File

@ -175,7 +175,7 @@ switch -nocase -glob -- $tcl_platform(os) {
*win* {
set TRG(platform) win
set TRG(make) make.bat
set TRG(makecmd) make.bat
set TRG(makecmd) "call make.bat"
set TRG(testfixture) testfixture.exe
set TRG(shell) sqlite3.exe
set TRG(run) run.bat
@ -720,7 +720,7 @@ proc add_shell_build_job {buildname dirname depid} {
if {$TRG(platform)=="win"} {
set path [string map {/ \\} "$dirname/"]
set copycmd "xcopy /S $TRG(shell) $path"
set copycmd "xcopy $TRG(shell) $path"
} else {
set copycmd "cp $TRG(shell) $dirname/"
}