X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=parse-all-light;h=e63811cd9fb973d2405544b905ea5229098ff5f4;hb=0322f357aebb8e1c22f1d929f13bf5c555d95bb9;hp=2d2c8f2f021e2265fffc76cf5c1d8a77ee29a054;hpb=26c90f23c4f881cbffa1e9bd321072ea4495ca91;p=pspp diff --git a/parse-all-light b/parse-all-light index 2d2c8f2f02..e63811cd9f 100755 --- a/parse-all-light +++ b/parse-all-light @@ -1,10 +1,9 @@ -#! /bin/sh -light=`ls -1 unzipped/*/*.bin | grep light` - -for d in $light; do - if ! ./dump all < $d > /dev/null 2>&1; then +#! /bin/bash +make || exit 1 +for d in {unzipped3,williams,germano,smekens,unzipped,unzipped2}/*/*light*.bin; do + if ! ./dump all < $d > /dev/null; then echo $d - ./dump all < $d + #./dump all < $d echo fi done