Compare and string catenation test cases
[ACL.git] / test / check_output
1 #!/bin/bash
2
3 STATUS=0
4
5 for output in *.exp
6 do
7    logfile=`basename $output .exp`
8    logfile=${logfile}.log
9    echo "Comparing $output with $logfile"
10    diff $output $logfile
11    RESULT=$?
12    if [ $STATUS == 0 ]
13    then
14       STATUS=${RESULT}
15    fi
16 done
17 exit $STATUS