From 68469c2b6fa465038d1b4b5b41b4670397c6584b Mon Sep 17 00:00:00 2001 From: Con Kolivas Date: Mon, 7 Mar 2011 13:41:00 +1100 Subject: [PATCH] Don't dump output to stdout when testing. --- main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.c b/main.c index eec1e2a..84c958a 100644 --- a/main.c +++ b/main.c @@ -378,7 +378,7 @@ static void decompress_file(void) runzip_fd(fd_in, fd_out, fd_hist, expected_size); - if (STDOUT) + if (STDOUT && !TEST_ONLY) dump_tmpoutfile(fd_out); /* if we get here, no fatal errors during decompression */