Skip to content

Commit 49c7815

Browse files
florianGlasimonresch
authored andcommitted
chore: write list fuzz tests command output to stdout
This makes it easy to distinguish between command output and potential JUnit warnings.
1 parent 6817a41 commit 49c7815

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/code_intelligence/jazzer/Jazzer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ private static void handleListFuzzTests() {
218218
List<String> classes = Opt.listFuzzTests.get();
219219
List<String> fuzzTests = FuzzTestLister.listFuzzTests(classes);
220220
if (!fuzzTests.isEmpty()) {
221-
fuzzTests.forEach(Log::println);
221+
fuzzTests.forEach(Log::structuredOutput);
222222
exit(0);
223223
} else {
224224
Log.error("Could not find any fuzz tests in " + classes);

0 commit comments

Comments
 (0)