Skip to content
This repository has been archived by the owner on Nov 1, 2023. It is now read-only.

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
chkeita committed May 31, 2021
1 parent 0a5a411 commit adb67c1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/agent/onefuzz/src/libfuzzer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -342,8 +342,10 @@ mod tests {
#[test]
fn test_libfuzzer_line_pulse() {
let line = r"#2097152 pulse cov: 11 ft: 11 corp: 6/21b lim: 4096 exec/s: 699050 rss: 562Mb";
let parser = LibFuzzerLineParser::new().unwrap();

let parsed = LibFuzzerLine::parse(line)
let parsed = parser
.parse(line)
.expect("parse error")
.expect("no captures");

Expand Down

0 comments on commit adb67c1

Please sign in to comment.