X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=parse-all-light;h=836369d9f818d9cad87220b5ee7d4c2ff8112586;hb=refs%2Fheads%2Fspv;hp=1facaec43d2bf858272a30f356862464e2d724af;hpb=68a20800ccdf1d5263e1a500f1acdaa982789419;p=pspp diff --git a/parse-all-light b/parse-all-light index 1facaec43d..836369d9f8 100755 --- a/parse-all-light +++ b/parse-all-light @@ -1,8 +1,9 @@ #! /bin/bash -for d in {williams,germano,smekens,unzipped,unzipped2}/*/*light*.bin; do - if ! ./dump all < $d >/dev/null; then +make || exit 1 +for d in {unzipped3,williams,germano,smekens,unzipped,unzipped2}/*/*light*.bin; do + if ! ./dump $d > /dev/null; then echo $d - ./dump all < $d + ./dump $d echo fi done