summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAndreas Rumpf <rumpf_a@web.de>2017-11-06 20:32:06 +0100
committerAndreas Rumpf <rumpf_a@web.de>2017-11-06 20:32:06 +0100
commit4dad120d47e5b2654a6e0728d5d387b59aed66aa (patch)
treefe4eebd504c415210a44b01ed73122d72140a7bc
parent2d892caba8d864db2da40ff22590bb01ddb0b0f0 (diff)
downloadNim-4dad120d47e5b2654a6e0728d5d387b59aed66aa.tar.gz
fixes a tester regression
-rw-r--r--tests/testament/tester.nim5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/testament/tester.nim b/tests/testament/tester.nim
index 71d9c2b9f..d75c9d770 100644
--- a/tests/testament/tester.nim
+++ b/tests/testament/tester.nim
@@ -461,10 +461,9 @@ proc main() =
   case action
   of "all":
     let testsDir = "tests" & DirSep
-    var myself = quoteShell(findExe("tests" / "testament" / "tester")) &
-      " '--nim:" & compilerPrefix & "'"
+    var myself = quoteShell(findExe("tests" / "testament" / "tester"))
     if targetsStr.len > 0:
-       myself &= " '--targets:" & targetsStr & "'"
+      myself &= " '--targets:" & targetsStr & "'"
     var cmds: seq[string] = @[]
     let rest = if p.cmdLineRest.string.len > 0: " " & p.cmdLineRest.string else: ""
     for kind, dir in walkDir(testsDir):