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 30, 2021
1 parent ddc944d commit 17b8c4e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/agent/onefuzz/src/libfuzzer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -342,8 +342,9 @@ 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 17b8c4e

Please sign in to comment.