diff options
| author | John Turner <jturner.usa@gmail.com> | 2025-11-17 22:58:46 +0000 |
|---|---|---|
| committer | John Turner <jturner.usa@gmail.com> | 2025-11-17 22:58:46 +0000 |
| commit | d4fd6cd211dc684d1ab096ca2a52264e18021bc4 (patch) | |
| tree | 9e26556d88b8f359bbc2c54cc50e7a9c60c0266b /src | |
| parent | 34362dcb293f456109b26193e1748de8502ffcfc (diff) | |
| download | gentoo-utils-d4fd6cd211dc684d1ab096ca2a52264e18021bc4.tar.gz | |
add false positive case to unit tests
Diffstat (limited to 'src')
| -rw-r--r-- | src/atom/parsers.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/atom/parsers.rs b/src/atom/parsers.rs index be59e1f..6cd658e 100644 --- a/src/atom/parsers.rs +++ b/src/atom/parsers.rs @@ -510,7 +510,10 @@ mod test { #[test] fn test_against_fuzzer_false_positives() { - let atoms = ["media-libs/libsdl2[haptitick(+),sound(+)vd,eio(+)]"]; + let atoms = [ + "media-libs/libsdl2[haptitick(+),sound(+)vd,eio(+)]", + "=kde-frameworks/kcodecs-6.19*86", + ]; for atom in atoms { assert!( |
