1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
#!/bin/sh
if test "x$srcdir" = x ; then srcdir=`pwd`; fi
. ../test_common.sh
set -e
. ${srcdir}/d4test_common.sh
echo "test_parse.sh:"
computetestablefiles
setresultdir results_test_parse
if test "x${RESET}" = x1 ; then rm -fr ${BASELINE}/*.d4p ; fi
for f in $F ; do
echo "testing: $f"
${VG} ${execdir}/test_parse ${RAWTESTFILES}/${f}.dmr > ${builddir}/results_test_parse/${f}.d4p
if test "x${TEST}" = x1 ; then
diff -wBb ${BASELINE}/${f}.d4p ${builddir}/results_test_parse/${f}.d4p
elif test "x${DIFF}" = x1 ; then
echo "diff -wBb ${RAWTESTFILES}/${f}.dmr ${builddir}/results_test_parse/${f}.d4p"
rm -f ${builddir}/tmp
cat ${builddir}/results_test_parse/${f}.d4p \
| sed -e '/<Dimensions>/d' -e '/<Types>'/d -e '/<Variables>'/d -e '/<Groups>'/d \
| sed -e '/<\/Dimensions>/d' -e '/<\/Types>'/d -e '/<\/Variables>'/d -e '/<\/Groups>'/d \
| sed -e '/_edu.ucar.opaque.size/,+2d' \
| cat > ${builddir}/tmp
diff -wBb ${RAWTESTFILES}/${f}.dmr ${builddir}/tmp
elif test "x${RESET}" = x1 ; then
echo "${f}.dmr:"
cp ${builddir}/results_test_parse/${f}.d4p ${BASELINE}/${f}.d4p
fi
done
|