testerscript.nim: fix

This commit is contained in:
Anna “CyberTailor” 2023-04-27 23:10:06 +05:00
parent 183c021d9f
commit ec9e3f7030
Signed by: CyberTaIlor
GPG Key ID: E7B76EDC50864BB1
1 changed files with 2 additions and 2 deletions

View File

@ -19,8 +19,8 @@ withDir($4):
for test in listFiles("tests"):
if test.startsWith("tests/t") and test.endsWith(".nim"):
let nimCacheDir = nimCacheBaseDir / test.multiReplace(
('/', '_'),
('\\', '_')
("/", "_"),
("\\", "_")
)
echo "-- Running test ", test, "..."
exec fmt"{nimBin} --hints:off {nimFlags} r" &