From 26c90f23c4f881cbffa1e9bd321072ea4495ca91 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Sat, 8 Aug 2015 01:01:50 -0700 Subject: [PATCH] parse-all-heavy, parse-all-light: New test scripts. --- parse-all-heavy | 10 ++++++++++ parse-all-light | 10 ++++++++++ 2 files changed, 20 insertions(+) create mode 100755 parse-all-heavy create mode 100755 parse-all-light diff --git a/parse-all-heavy b/parse-all-heavy new file mode 100755 index 0000000000..757e46d200 --- /dev/null +++ b/parse-all-heavy @@ -0,0 +1,10 @@ +#! /bin/sh +heavy=`ls -1 unzipped/*/*.bin | grep -v light` + +for d in $heavy; do + if ! ./dump2 < $d > /dev/null 2>&1; then + echo $d + ./dump2 < $d + echo + fi +done diff --git a/parse-all-light b/parse-all-light new file mode 100755 index 0000000000..2d2c8f2f02 --- /dev/null +++ b/parse-all-light @@ -0,0 +1,10 @@ +#! /bin/sh +light=`ls -1 unzipped/*/*.bin | grep light` + +for d in $light; do + if ! ./dump all < $d > /dev/null 2>&1; then + echo $d + ./dump all < $d + echo + fi +done -- 2.30.2