| 1 | #!/bin/sh |
|---|
| 2 | # |
|---|
| 3 | # Survex test suite - extend 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 | : ${CAVERN="$testdir"/../src/cavern} |
|---|
| 31 | : ${EXTEND="$testdir"/../src/extend} |
|---|
| 32 | : ${DIFFPOS="$testdir"/../src/diffpos} |
|---|
| 33 | |
|---|
| 34 | : ${TESTS=${*:-"extend extend2names eswap eswap-break"}} |
|---|
| 35 | |
|---|
| 36 | for file in $TESTS ; do |
|---|
| 37 | echo $file |
|---|
| 38 | EXTEND_ARGS="" |
|---|
| 39 | test -f "$srcdir/$file.espec" && EXTEND_ARGS="--specfile $srcdir/$file.espec" |
|---|
| 40 | rm -f tmp.* |
|---|
| 41 | if test -n "$VERBOSE" ; then |
|---|
| 42 | $CAVERN "$srcdir/$file.svx" --output=tmp || exit 1 |
|---|
| 43 | $EXTEND $EXTEND_ARGS tmp.3d tmp.x.3d || exit 1 |
|---|
| 44 | $DIFFPOS tmp.x.3d "$srcdir/${file}x.3d" || exit 1 |
|---|
| 45 | else |
|---|
| 46 | $CAVERN "$srcdir/$file.svx" --output=tmp > /dev/null || exit 1 |
|---|
| 47 | $EXTEND $EXTEND_ARGS tmp.3d tmp.x.3d > /dev/null || exit 1 |
|---|
| 48 | $DIFFPOS tmp.x.3d "$srcdir/${file}x.3d" > /dev/null || exit 1 |
|---|
| 49 | fi |
|---|
| 50 | rm -f tmp.* |
|---|
| 51 | done |
|---|
| 52 | test -n "$VERBOSE" && echo "Test passed" |
|---|
| 53 | exit 0 |
|---|