2017-03-09 08:01:10 +08:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
if test "x$srcdir" = x ; then srcdir=`pwd`; fi
|
|
|
|
. ../test_common.sh
|
|
|
|
|
2021-01-15 12:39:08 +08:00
|
|
|
set -e
|
|
|
|
|
2017-03-09 08:01:10 +08:00
|
|
|
. ${srcdir}/d4test_common.sh
|
|
|
|
|
2017-05-18 02:30:24 +08:00
|
|
|
echo "test_parse.sh:"
|
|
|
|
|
2022-11-14 04:15:11 +08:00
|
|
|
computetestablefiles
|
2017-03-09 08:01:10 +08:00
|
|
|
|
2018-06-27 03:58:45 +08:00
|
|
|
setresultdir results_test_parse
|
|
|
|
|
2017-03-09 08:01:10 +08:00
|
|
|
if test "x${RESET}" = x1 ; then rm -fr ${BASELINE}/*.d4p ; fi
|
|
|
|
for f in $F ; do
|
|
|
|
echo "testing: $f"
|
2022-11-14 04:15:11 +08:00
|
|
|
${VG} ${execdir}/test_parse ${RAWTESTFILES}/${f}.dmr > ${builddir}/results_test_parse/${f}.d4p
|
2017-03-09 08:01:10 +08:00
|
|
|
if test "x${TEST}" = x1 ; then
|
2022-11-14 04:15:11 +08:00
|
|
|
diff -wBb ${BASELINE}/${f}.d4p ${builddir}/results_test_parse/${f}.d4p
|
2017-03-09 08:01:10 +08:00
|
|
|
elif test "x${DIFF}" = x1 ; then
|
2022-11-14 04:15:11 +08:00
|
|
|
echo "diff -wBb ${RAWTESTFILES}/${f}.dmr ${builddir}/results_test_parse/${f}.d4p"
|
|
|
|
rm -f ${builddir}/tmp
|
|
|
|
cat ${builddir}/results_test_parse/${f}.d4p \
|
2017-03-09 08:01:10 +08:00
|
|
|
| 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' \
|
2022-11-14 04:15:11 +08:00
|
|
|
| cat > ${builddir}/tmp
|
|
|
|
diff -wBb ${RAWTESTFILES}/${f}.dmr ${builddir}/tmp
|
2017-03-09 08:01:10 +08:00
|
|
|
elif test "x${RESET}" = x1 ; then
|
2022-11-14 04:15:11 +08:00
|
|
|
echo "${f}.dmr:"
|
|
|
|
cp ${builddir}/results_test_parse/${f}.d4p ${BASELINE}/${f}.d4p
|
2017-03-09 08:01:10 +08:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2017-04-04 11:39:44 +08:00
|
|
|
|