We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
java_fuzz_target_test
1 parent b121327 commit 7b17073Copy full SHA for 7b17073
1 file changed
bazel/tools/java/com/code_intelligence/jazzer/tools/FuzzTargetTestWrapper.java
@@ -234,7 +234,8 @@ private static boolean verifyFuzzerOutput(
234
throws IOException {
235
List<String> lines;
236
try (BufferedReader reader = new BufferedReader(new InputStreamReader(fuzzerOutput))) {
237
- lines = reader.lines().collect(toList());
+ // Print the lines as they are read to get live updates on the console.
238
+ lines = reader.lines().peek(System.err::println).collect(toList());
239
}
240
241
List<String> warningsAndErrors =
@@ -263,7 +264,6 @@ private static boolean verifyFuzzerOutput(
263
264
265
List<String> stackTrace =
266
lines.stream()
- .peek(System.err::println)
267
.filter(
268
line ->
269
line.startsWith(EXCEPTION_PREFIX)
0 commit comments