File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
bazel/tools/java/com/code_intelligence/jazzer/tools Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -234,7 +234,8 @@ private static boolean verifyFuzzerOutput(
234234 throws IOException {
235235 List <String > lines ;
236236 try (BufferedReader reader = new BufferedReader (new InputStreamReader (fuzzerOutput ))) {
237- lines = reader .lines ().collect (toList ());
237+ // Print the lines as they are read to get live updates on the console.
238+ lines = reader .lines ().peek (System .err ::println ).collect (toList ());
238239 }
239240
240241 List <String > warningsAndErrors =
@@ -263,7 +264,6 @@ private static boolean verifyFuzzerOutput(
263264
264265 List <String > stackTrace =
265266 lines .stream ()
266- .peek (System .err ::println )
267267 .filter (
268268 line ->
269269 line .startsWith (EXCEPTION_PREFIX )
You can’t perform that action at this time.
0 commit comments