bump mon for bug fixes

This commit is contained in:
John Turner
2025-11-17 21:20:40 +00:00
parent b74471706b
commit 63db65b2f0
3 changed files with 14 additions and 2 deletions

View File

@@ -507,4 +507,16 @@ mod test {
Atom::parser().check_finished(it).unwrap();
}
#[test]
fn test_against_fuzzer_false_positives() {
let atoms = ["media-libs/libsdl2[haptitick(+),sound(+)vd,eio(+)]"];
for atom in atoms {
assert!(
Atom::parser().check_finished(InputIter::new(atom)).is_err(),
"{atom}"
);
}
}
}