summary refs log tree commit diff stats
path: root/tests/system
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2011-12-31 13:56:09 +0100
committerAraq <rumpf_a@web.de>2011-12-31 13:56:09 +0100
commitf30eb9feb8430587d285d863f4f906d8874b8d73 (patch)
tree8916e2a9982e480e8da95a8118f90fc4ce1db7b0 /tests/system
parent05fd30df436de4f8d489ec00fc7f6e31dd64dde2 (diff)
downloadNim-f30eb9feb8430587d285d863f4f906d8874b8d73.tar.gz
changed io tests
Diffstat (limited to 'tests/system')
-rw-r--r--tests/system/io.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/system/io.nim b/tests/system/io.nim
index 4837f7093..2c68fd249 100644
--- a/tests/system/io.nim
+++ b/tests/system/io.nim
@@ -9,7 +9,7 @@ const TEST_FILE = "tests/testdata/string"
 
 proc echoLoop(str: string): string =
   result = ""
-  var process = startProcess(os.addFileExt("tests/system/helpers/readall_echo", ExeExt))
+  var process = startProcess(findExe("tests/system/helpers/readall_echo"))
   var input = process.inputStream
   input.write(str)
   input.close()