This website requires JavaScript.
Explore
Help
Register
Sign In
Rooba
/
oss-fuzz
mirror of
https://github.com/google/oss-fuzz.git
Watch
1
Star
1
Fork
You've already forked oss-fuzz
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
2436e38a72
oss-fuzz
/
projects
/
java-example
/
default.options
7 lines
70 B
Plaintext
Raw
Normal View
History
Unescape
Escape
[jazzer][java-example] Fix native library loading. (#5262) Prior to this change, native library loading failed for two reasons: 1. Loading from current working directory instead of the fuzzer's directory. 2. Using ASAN_OPTIONS=handle_segv=2. Fix these issues by doing the following. 1. Adding the fuzzer's directory to LD_LIBRARY_PATH instead of "." 2. Specifying handle_segv=1 in ASAN_OPTIONS. Related: https://github.com/google/oss-fuzz/issues/5178
2021-02-26 18:22:32 +00:00
[asan]
[java-example] Speculative fix for JVM segfault crashes (#5554) The JVM uses custom SIGSEGV handlers, which leads to fuzzer crashes on ClusterFuzz when running with ASAN likely due to the allow_user_segv_handler=1 default on the platform.
2021-04-01 16:04:22 +00:00
handle_segv=1
allow_user_segv_handler=1
[java-example] Fix UBSan options (#5910) The JVM needs to register custom SEGV handlers.
2021-06-11 12:13:10 +00:00
[ubsan]
handle_segv=1