summary refs log tree commit diff stats
path: root/tests/osproc/treadlines.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/osproc/treadlines.nim')
-rw-r--r--tests/osproc/treadlines.nim9
1 files changed, 6 insertions, 3 deletions
diff --git a/tests/osproc/treadlines.nim b/tests/osproc/treadlines.nim
index 3a8303321..bb6a7f129 100644
--- a/tests/osproc/treadlines.nim
+++ b/tests/osproc/treadlines.nim
@@ -1,16 +1,19 @@
 discard """
-  output: '''Error: cannot open 'a.nim'
+  output: '''
+Error: cannot open 'a.nim'
 Error: cannot open 'b.nim'
 '''
   targets: "c"
 """
 
 import osproc
+from std/os import getCurrentCompilerExe
 
 var ps: seq[Process] # compile & run 2 progs in parallel
+const nim = getCurrentCompilerExe()
 for prog in ["a", "b"]:
-  ps.add startProcess("nim", "",
-                      ["r", "--hint[Conf]=off", "--hint[Processing]=off", prog],
+  ps.add startProcess(nim, "",
+                      ["r", "--hint:Conf:off", "--hint:Processing:off", prog],
                       options = {poUsePath, poDaemon, poStdErrToStdOut})
 
 for p in ps: