Clean up tests/osproc

This commit is contained in:
def
2015-02-04 22:15:30 +01:00
parent f18368bd3b
commit 1c4153790b

View File

@@ -4,13 +4,16 @@ discard """
"""
import osproc, os, streams
doAssert fileExists(getCurrentDir() / "tests" / "osproc" / "ta.exe")
const filename = when defined(Windows): "ta.exe" else: "ta"
var p = startProcess("ta.exe", getCurrentDir() / "tests" / "osproc")
doAssert fileExists(getCurrentDir() / "tests" / "osproc" / filename)
var p = startProcess(filename, getCurrentDir() / "tests" / "osproc")
p.inputStream.write("5\n")
p.inputStream.flush()
while true:
let line = p.outputStream.readLine()
if line != "":
echo line
else:
break
break