tools: run-tests: fix !time! retrieval

This commit is contained in:
Bill Zissimopoulos 2021-11-14 13:01:56 +00:00
parent 6fbe73ce4d
commit 368855676a
No known key found for this signature in database
GPG Key ID: 3D4F95D52C7B3EA3

View File

@ -135,9 +135,9 @@ for %%f in (%tests%) do (
)
pushd %cd%
set "begtime=%time: =0%"
set "begtime=!time: =0!"
call :%%f
set "endtime=%time: =0%"
set "endtime=!time: =0!"
popd
REM see https://stackoverflow.com/a/9935540