From 629059ee84e83b9d013d80e0b382a3474b30c7a4 Mon Sep 17 00:00:00 2001 From: Zdenek Kabelac Date: Tue, 13 Sep 2016 13:23:47 +0200 Subject: [PATCH] tests: Revert "tests: not redirect strderr to stdout" This reverts commit 5314d36f3d186efb05a051e80444332f743194ef. Ok - some tests do look for 'stderr' output of 'not' commands. So let's keep existing functionality. --- test/lib/not.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/test/lib/not.c b/test/lib/not.c index 4ce77b641..a5c52a8e6 100644 --- a/test/lib/not.c +++ b/test/lib/not.c @@ -72,12 +72,9 @@ int main(int args, char **argv) { fprintf(stderr, "Could not fork\n"); return FAILURE; } else if (pid == 0) { /* child */ - if (!strcmp(argv[0], "not")) { + if (!strcmp(argv[0], "not")) val = ">1"; - /* Redirect 'expected' error output */ - fflush(stderr); - dup2(fileno(stdout), fileno(stderr)); - } else if (!strcmp(argv[0], "invalid")) + else if (!strcmp(argv[0], "invalid")) val = "3"; else if (!strcmp(argv[0], "fail")) val = "5";