parse-all-heavy, parse-all-light: New test scripts.
authorBen Pfaff <blp@cs.stanford.edu>
Sat, 8 Aug 2015 08:01:50 +0000 (01:01 -0700)
committerBen Pfaff <blp@cs.stanford.edu>
Sat, 8 Aug 2015 08:01:50 +0000 (01:01 -0700)
parse-all-heavy [new file with mode: 0755]
parse-all-light [new file with mode: 0755]

diff --git a/parse-all-heavy b/parse-all-heavy
new file mode 100755 (executable)
index 0000000..757e46d
--- /dev/null
@@ -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 (executable)
index 0000000..2d2c8f2
--- /dev/null
@@ -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