aboutsummaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2021-11-18 23:14:47 +0000
committerJesse Luehrs <doy@tozt.net>2021-11-18 23:45:31 +0000
commit0262ded968ece38cff5cb80626299155ef040228 (patch)
treea1c089ba7ad59aa99ad60af9d548dcb28a0cc227 /bin
parent90956826a5e267e8c9d220561e8b2506efe97d02 (diff)
downloadvt100-rust-0262ded968ece38cff5cb80626299155ef040228.tar.gz
vt100-rust-0262ded968ece38cff5cb80626299155ef040228.zip
add fuzzer input generator
Diffstat (limited to 'bin')
-rwxr-xr-xbin/regen-fuzz6
1 files changed, 6 insertions, 0 deletions
diff --git a/bin/regen-fuzz b/bin/regen-fuzz
new file mode 100755
index 0000000..cda3cf8
--- /dev/null
+++ b/bin/regen-fuzz
@@ -0,0 +1,6 @@
+#!/bin/sh
+set -eu
+
+for file in tests/data/fixtures/*.in; do
+ cargo run --example generate_fuzz "$(basename "$file" .in)"
+done