Skip to content

Commit

Permalink
Add core files to gitignore and debug to test
Browse files Browse the repository at this point in the history
  • Loading branch information
louismerlin committed Jan 9, 2024
1 parent fb029c2 commit 2365788
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,6 @@ target/
**/*.rs.bk

# MSVC Windows builds of rustc generate these, which store debugging information
*.pdb
*.pdb

core
5 changes: 5 additions & 0 deletions tests/arbitrary_fuzz.rs
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,11 @@ fn integration() {
thread::sleep(Duration::from_secs(10));
kill_subprocesses_recursively(&format!("{}", fuzzer.id()));

process::Command::new("cat")
.arg(temp_dir_path.join("arbitrary-fuzz").join("logs").join("afl.log"))
.spawn()
.unwrap();

assert!(temp_dir_path
.join("arbitrary-fuzz")
.join("afl")
Expand Down

0 comments on commit 2365788

Please sign in to comment.