summaryrefslogtreecommitdiff
path: root/test/src
diff options
context:
space:
mode:
authorJ08nY2017-08-30 19:59:00 +0200
committerJ08nY2017-08-30 19:59:00 +0200
commit27241c94ef0a1752128c31a62fcfc89b3ee89b33 (patch)
tree28184872d0d7cdf8faf2a5be302efce1eefdcea1 /test/src
parent5856d4d9c66b361c613b85fd187e9e989c270129 (diff)
downloadecgen-27241c94ef0a1752128c31a62fcfc89b3ee89b33.tar.gz
ecgen-27241c94ef0a1752128c31a62fcfc89b3ee89b33.tar.zst
ecgen-27241c94ef0a1752128c31a62fcfc89b3ee89b33.zip
Add err output stream, default to stderr.
Diffstat (limited to 'test/src')
-rw-r--r--test/src/io/test_input.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/src/io/test_input.c b/test/src/io/test_input.c
index 6e7064f..30bbcb1 100644
--- a/test/src/io/test_input.c
+++ b/test/src/io/test_input.c
@@ -25,6 +25,7 @@ void input_setup() {
write_in = fdopen(in_fd[1], "w");
setlinebuf(write_in);
in = fdopen(in_fd[0], "r");
+ err = fopen("/dev/null", "w");
}
void input_teardown() {