summary refs log tree commit diff stats
path: root/tests/osproc/tstdout.nim
blob: 0cb5bd9c082af638726ac58d7c642e9734f33f85 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
discard """
  output: '''--------------------------------------
to stdout
to stdout
to stderr
to stderr
to stdout
to stdout
--------------------------------------
'''
"""
import osproc, os, streams

const filename = when defined(Windows): "ta_out.exe" else: "ta_out"

doAssert fileExists(getCurrentDir() / "tests" / "osproc" / filename)

var p = startProcess(filename, getCurrentDir() / "tests" / "osproc",
                     options={poStdErrToStdOut})

let outputStream = p.outputStream
var x = newStringOfCap(120)
var output = ""
while outputStream.readLine(x.TaintedString):
  output.add(x & "\n")

echo "--------------------------------------"
stdout.write output
echo "--------------------------------------"