From: Ben Pfaff Date: Sat, 8 Aug 2015 08:01:50 +0000 (-0700) Subject: parse-all-heavy, parse-all-light: New test scripts. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?p=pspp;a=commitdiff_plain;h=26c90f23c4f881cbffa1e9bd321072ea4495ca91 parse-all-heavy, parse-all-light: New test scripts. --- 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