diff options
| author | John Turner <jturner.usa@gmail.com> | 2025-11-16 20:17:35 +0000 |
|---|---|---|
| committer | John Turner <jturner.usa@gmail.com> | 2025-11-16 20:17:35 +0000 |
| commit | 7c404ca8c5d0037a17797ace2961d5424cf3a4a5 (patch) | |
| tree | 7fbeee2ee1d507342ffbbf6d3c2ef76bf359bfde /scripts | |
| parent | fdf1f09d6f43e7aa80a43fa117c26d535106f936 (diff) | |
| download | gentoo-utils-7c404ca8c5d0037a17797ace2961d5424cf3a4a5.tar.gz | |
add fuzzer
Diffstat (limited to 'scripts')
| -rwxr-xr-x | scripts/atom.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/scripts/atom.py b/scripts/atom.py new file mode 100755 index 0000000..a1a59bd --- /dev/null +++ b/scripts/atom.py @@ -0,0 +1,13 @@ +#!/usr/bin/env python3 + +import sys +import portage.dep as dep + +input = sys.stdin.read().strip() + +try: + dep.Atom(input) +except Exception as e: + sys.exit(1) + +sys.exit(0) |
