| 1 | #!/bin/sh |
|---|
| 2 | # |
|---|
| 3 | # Survex test suite - diffpos tests |
|---|
| 4 | # Copyright (C) 1999-2003,2010,2012 Olly Betts |
|---|
| 5 | # |
|---|
| 6 | # This program is free software; you can redistribute it and/or modify |
|---|
| 7 | # it under the terms of the GNU General Public License as published by |
|---|
| 8 | # the Free Software Foundation; either version 2 of the License, or |
|---|
| 9 | # (at your option) any later version. |
|---|
| 10 | # |
|---|
| 11 | # This program is distributed in the hope that it will be useful, |
|---|
| 12 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 13 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|---|
| 14 | # GNU General Public License for more details. |
|---|
| 15 | # |
|---|
| 16 | # You should have received a copy of the GNU General Public License |
|---|
| 17 | # along with this program; if not, write to the Free Software |
|---|
| 18 | # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
|---|
| 19 | |
|---|
| 20 | testdir=`echo $0 | sed 's!/[^/]*$!!' || echo '.'` |
|---|
| 21 | |
|---|
| 22 | # allow us to run tests standalone more easily |
|---|
| 23 | : ${srcdir="$testdir"} |
|---|
| 24 | |
|---|
| 25 | # force VERBOSE if we're run on a subset of tests |
|---|
| 26 | test -n "$*" && VERBOSE=1 |
|---|
| 27 | |
|---|
| 28 | test -x "$testdir"/../src/cavern || testdir=. |
|---|
| 29 | |
|---|
| 30 | : ${DIFFPOS="$testdir"/../src/diffpos} |
|---|
| 31 | |
|---|
| 32 | : ${TESTS=${*:-"delatend addatend"}} |
|---|
| 33 | |
|---|
| 34 | SURVEXLANG=en |
|---|
| 35 | export SURVEXLANG |
|---|
| 36 | |
|---|
| 37 | vg_error=123 |
|---|
| 38 | vg_log=vg.log |
|---|
| 39 | if [ -n "$VALGRIND" ] ; then |
|---|
| 40 | rm -f "$vg_log" |
|---|
| 41 | DIFFPOS="$VALGRIND --log-file=$vg_log --error-exitcode=$vg_error $DIFFPOS" |
|---|
| 42 | fi |
|---|
| 43 | |
|---|
| 44 | for file in $TESTS ; do |
|---|
| 45 | echo $file |
|---|
| 46 | rm -f diffpos.tmp |
|---|
| 47 | $DIFFPOS "$srcdir/${file}a.pos" "$srcdir/${file}b.pos" > diffpos.tmp |
|---|
| 48 | exitcode=$? |
|---|
| 49 | if [ -n "$VALGRIND" ] ; then |
|---|
| 50 | if [ $exitcode = "$vg_error" ] ; then |
|---|
| 51 | cat "$vg_log" |
|---|
| 52 | rm "$vg_log" |
|---|
| 53 | exit 1 |
|---|
| 54 | fi |
|---|
| 55 | rm "$vg_log" |
|---|
| 56 | fi |
|---|
| 57 | if test -n "$VERBOSE" ; then |
|---|
| 58 | cat diffpos.tmp |
|---|
| 59 | cmp diffpos.tmp "$srcdir/${file}.out" || exit 1 |
|---|
| 60 | else |
|---|
| 61 | cmp diffpos.tmp "$srcdir/${file}.out" > /dev/null || exit 1 |
|---|
| 62 | fi |
|---|
| 63 | rm -f diffpos.tmp |
|---|
| 64 | done |
|---|
| 65 | |
|---|
| 66 | for args in '' '--survey survey' '--survey survey.xyzzy' '--survey xyzzy' ; do |
|---|
| 67 | echo "diffpos $args" |
|---|
| 68 | rm -f diffpos.tmp |
|---|
| 69 | $DIFFPOS $args "$srcdir/v0.3d" "$srcdir/v0.3d" > diffpos.tmp |
|---|
| 70 | if test -n "$VERBOSE" ; then |
|---|
| 71 | cat diffpos.tmp |
|---|
| 72 | fi |
|---|
| 73 | cmp diffpos.tmp /dev/null > /dev/null || exit 1 |
|---|
| 74 | rm -f diffpos.tmp |
|---|
| 75 | done |
|---|
| 76 | test -n "$VERBOSE" && echo "Test passed" |
|---|
| 77 | exit 0 |
|---|