Commit 6eda3e9c authored by Alvaro Herrera's avatar Alvaro Herrera

isolationtester: Ensure stderr is unbuffered, too

parent 527fdd9d
......@@ -99,8 +99,12 @@ main(int argc, char **argv)
}
}
/* make stdout unbuffered to match stderr */
/*
* Make stdout unbuffered to match stderr; and ensure stderr is unbuffered
* too, which it should already be everywhere except sometimes in Windows.
*/
setbuf(stdout, NULL);
setbuf(stderr, NULL);
/*
* If the user supplies a non-option parameter on the command line, use it
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment