Skip to content

Commit

Permalink
tests: Restore live output of java_fuzz_target_test
Browse files Browse the repository at this point in the history
This broke in 55eb18b.
  • Loading branch information
fmeum committed Oct 18, 2023
1 parent b121327 commit 58585bb
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,8 @@ private static boolean verifyFuzzerOutput(
throws IOException {
List<String> lines;
try (BufferedReader reader = new BufferedReader(new InputStreamReader(fuzzerOutput))) {
lines = reader.lines().collect(toList());
// Print the lines as they are read to get live updates on the console.
lines = reader.lines().peek(System.err::println).collect(toList());
}

List<String> warningsAndErrors =
Expand Down

0 comments on commit 58585bb

Please sign in to comment.