parse-all-heavy, parse-all-light: New test scripts.
[pspp] / parse-all-light
1 #! /bin/sh
2 light=`ls -1 unzipped/*/*.bin | grep light`
3
4 for d in $light; do
5     if ! ./dump all < $d > /dev/null 2>&1; then
6         echo $d
7         ./dump all < $d
8         echo
9     fi
10 done