You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cargo run -v target pulldown_cmark_read --fuzzer libfuzzer on master:
Running `/Users/corey/dev/targets/target/x86_64-apple-darwin/debug/pulldown_cmark_read /Users/corey/dev/targets/fuzzer-libfuzzer/corpus-pulldown_cmark_read /Users/corey/dev/targets/common/seeds/pulldown_cmark_read`
WARNING: Failed to find function "__sanitizer_print_stack_trace". Reason dlsym(RTLD_DEFAULT, __sanitizer_print_stack_trace): symbol not found.
WARNING: Failed to find function "__sanitizer_set_death_callback". Reason dlsym(RTLD_DEFAULT, __sanitizer_set_death_callback): symbol not found.
INFO: Seed: 20030479
INFO: Loaded 1 modules (12902 guards): 12902 [0x10bfc9360, 0x10bfd5cf8),
No such directory: ; exiting
Fuzzer quit
cargo run -v target pulldown_cmark_read --fuzzer libfuzzer on master after running cargo update -p libfuzzer-sys:
Running `/Users/corey/dev/targets/target/x86_64-apple-darwin/debug/pulldown_cmark_read /Users/corey/dev/targets/fuzzer-libfuzzer/corpus-pulldown_cmark_read /Users/corey/dev/targets/common/seeds/pulldown_cmark_read`
WARNING: Failed to find function "__sanitizer_acquire_crash_state". Reason dlsym(RTLD_DEFAULT, __sanitizer_acquire_crash_state): symbol not found.
WARNING: Failed to find function "__sanitizer_print_stack_trace". Reason dlsym(RTLD_DEFAULT, __sanitizer_print_stack_trace): symbol not found.
WARNING: Failed to find function "__sanitizer_set_death_callback". Reason dlsym(RTLD_DEFAULT, __sanitizer_set_death_callback): symbol not found.
INFO: Seed: 962144173
INFO: Loaded 1 modules (12902 guards): 12902 [0x10bf82520, 0x10bf8eeb8),
No such file or directory: ; exiting
Fuzzer quit
Judging by "No such file or directory: ; exiting" it seems to be the same issue I ran into and fixed in #138. There I started to pass -max_total_time=0 instead of an empty string to make libFuzzer stop treating that argument as a directory.
cargo run -v target pulldown_cmark_read --fuzzer libfuzzer
on master:cargo run -v target pulldown_cmark_read --fuzzer libfuzzer
on master after runningcargo update -p libfuzzer-sys
:I noticed the
rust-fuzz/cargo-fuzz
libfuzzer flags don't match therust-fuzz/targets
libfuzzer flags. I made therust-fuzz/targets
flags match the other ones, which got rid of thesymbol not found
errors, but I still hit theNo such file or directory: ; exiting
error. No idea where this is coming from.The text was updated successfully, but these errors were encountered: