| [fbc3a20] | 1 | #!/bin/sh |
|---|
| [d4ea980] | 2 | # |
|---|
| 3 | # Survex test suite - diffpos tests |
|---|
| [0ebdaa6] | 4 | # Copyright (C) 1999-2003,2010,2012 Olly Betts |
|---|
| [d4ea980] | 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 |
|---|
| [cc49471] | 18 | # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
|---|
| [6b8ff5b] | 19 | |
|---|
| [d4d8efe] | 20 | testdir=`echo $0 | sed 's!/[^/]*$!!' || echo '.'` |
|---|
| 21 | |
|---|
| [6b8ff5b] | 22 | # allow us to run tests standalone more easily |
|---|
| [d4d8efe] | 23 | : ${srcdir="$testdir"} |
|---|
| [647407d] | 24 | |
|---|
| [5476de6] | 25 | # force VERBOSE if we're run on a subset of tests |
|---|
| 26 | test -n "$*" && VERBOSE=1 |
|---|
| 27 | |
|---|
| [87681b8] | 28 | test -x "$testdir"/../src/cavern || testdir=. |
|---|
| 29 | |
|---|
| [d4d8efe] | 30 | : ${DIFFPOS="$testdir"/../src/diffpos} |
|---|
| [6b8ff5b] | 31 | |
|---|
| [e0c8f98] | 32 | : ${TESTS=${*:-"delatend addatend"}} |
|---|
| [1422c39] | 33 | |
|---|
| [0ebdaa6] | 34 | SURVEXLANG=en |
|---|
| 35 | export SURVEXLANG |
|---|
| 36 | |
|---|
| [1422c39] | 37 | for file in $TESTS ; do |
|---|
| [fbc3a20] | 38 | echo $file |
|---|
| [87681b8] | 39 | rm -f diffpos.tmp |
|---|
| [d4ea980] | 40 | $DIFFPOS "$srcdir/${file}a.pos" "$srcdir/${file}b.pos" > diffpos.tmp |
|---|
| [d4d8efe] | 41 | if test -n "$VERBOSE" ; then |
|---|
| [87681b8] | 42 | cat diffpos.tmp |
|---|
| [d4ea980] | 43 | cmp diffpos.tmp "$srcdir/${file}.out" || exit 1 |
|---|
| [d4d8efe] | 44 | else |
|---|
| [d4ea980] | 45 | cmp diffpos.tmp "$srcdir/${file}.out" > /dev/null || exit 1 |
|---|
| [d4d8efe] | 46 | fi |
|---|
| [87681b8] | 47 | rm -f diffpos.tmp |
|---|
| [fbc3a20] | 48 | done |
|---|
| [4d3dfdf] | 49 | |
|---|
| 50 | for args in '' '--survey survey' '--survey survey.xyzzy' '--survey xyzzy' ; do |
|---|
| 51 | echo "diffpos $args" |
|---|
| 52 | rm -f diffpos.tmp |
|---|
| [d4ea980] | 53 | $DIFFPOS $args "$srcdir/v0.3d" "$srcdir/v0.3d" > diffpos.tmp |
|---|
| [4d3dfdf] | 54 | if test -n "$VERBOSE" ; then |
|---|
| 55 | cat diffpos.tmp |
|---|
| 56 | fi |
|---|
| 57 | cmp diffpos.tmp /dev/null > /dev/null || exit 1 |
|---|
| 58 | rm -f diffpos.tmp |
|---|
| 59 | done |
|---|
| [bbe0a27] | 60 | test -n "$VERBOSE" && echo "Test passed" |
|---|
| [fbc3a20] | 61 | exit 0 |
|---|