Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ java_binary(
deps = ["//src/main/java/com/code_intelligence/jazzer/api:hooks"],
)

# Regression test for https://github.com/CodeIntelligence/jazzer/issues/878:
# Regression test for https://github.com/CodeIntelligenceTesting/jazzer/issues/878:
# Custom hooks must be disabled during coverage report generation to prevent
# NoClassDefFoundError when hooked classes are used and the hook class is no
# longer available.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import java.util.ArrayList;

/**
* Regression test for https://github.com/CodeIntelligence/jazzer/issues/878.
* Regression test for https://github.com/CodeIntelligenceTesting/jazzer/issues/878.
*
* <p>When generating a coverage report at shutdown, any use of hooked method would trigger custom
* hook dispatch. If the hook class is no longer loadable at that point, the JVM throws
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
import java.lang.invoke.MethodHandle;

/**
* Hook that targets ArrayList.&lt;init&gt; that sets a system property so that we can check in the
* fuzz test whether the hook is called or not.
* Hook that targets {@code ArrayList.<init>} that sets a system property so that we can check in
* the fuzz test whether the hook is called or not.
*/
public class CoverageWithHooksFuzzerHooks {
@MethodHook(
Expand Down