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 38 39 40 41 42 43
|
#!/bin/sh
set -eu
readonly SCRIPTDIR=$(dirname "$0")
"${SHPCREATE:-$top_builddir/shpcreate}" "test" point
"${SHPADD:-$top_builddir/shpadd}" "test" -83.54949956 34.992401
"${SHPADD:-$top_builddir/shpadd}" "test" -83.52162155 34.99276748
"${SHPADD:-$top_builddir/shpadd}" "test" -84.01681518 34.67275985
"${SHPADD:-$top_builddir/shpadd}" "test" -84.15596023 34.64862437
"${SHPADD:-$top_builddir/shpadd}" "test" -83.61951463 34.54927047
"${DBFCREATE:-$top_builddir/dbfcreate}" "test" -s fd 30
"${DBFADD:-$top_builddir/dbfadd}" "test" "1"
"${DBFADD:-$top_builddir/dbfadd}" "test" "2"
"${DBFADD:-$top_builddir/dbfadd}" "test" "3"
"${DBFADD:-$top_builddir/dbfadd}" "test" "4"
"${DBFADD:-$top_builddir/dbfadd}" "test" "5"
"${SHPDUMP:-$top_builddir/shpdump}" -precision 8 "test" > "test.out"
supports_strip_trailing_cr() {
diff --help 2>/dev/null | grep -q -- '--strip-trailing-cr'
}
run_diff() {
if supports_strip_trailing_cr; then
diff --strip-trailing-cr "$SCRIPTDIR/expect.out" "test.out"
else
diff "$SCRIPTDIR/expect.out" "test.out"
fi
}
if result=$(run_diff); then
echo "******* Test Succeeded *********"
exit 0
else
echo "******* Test Failed *********"
echo "$result"
exit 1
fi
|