Don't dump output to stdout when testing.

This commit is contained in:
Con Kolivas 2011-03-07 13:41:00 +11:00
parent 06fd0a3528
commit 68469c2b6f

2
main.c
View file

@ -378,7 +378,7 @@ static void decompress_file(void)
runzip_fd(fd_in, fd_out, fd_hist, expected_size); runzip_fd(fd_in, fd_out, fd_hist, expected_size);
if (STDOUT) if (STDOUT && !TEST_ONLY)
dump_tmpoutfile(fd_out); dump_tmpoutfile(fd_out);
/* if we get here, no fatal errors during decompression */ /* if we get here, no fatal errors during decompression */