| [58f02ae] | 1 | #!/bin/sh
|
|---|
| [d4ea980] | 2 | #
|
|---|
| 3 | # Survex test suite - 3dtopos tests
|
|---|
| [d12294e] | 4 | # Copyright (C) 1999-2003,2005,2010 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
|
|---|
| 18 | # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|---|
| [58f02ae] | 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 |
|
|---|
| [87681b8] | 28 | test -x "$testdir"/../src/cavern || testdir=.
|
|---|
| 29 |
|
|---|
| [58f02ae] | 30 | : ${DIFFPOS="$testdir"/../src/diffpos}
|
|---|
| 31 | : ${TDTOPOS="$testdir"/../src/3dtopos}
|
|---|
| 32 |
|
|---|
| [d12294e] | 33 | : ${TESTS=${*:-"pos.pos v0 v0b v1 v2 v3"}}
|
|---|
| [58f02ae] | 34 |
|
|---|
| 35 | for file in $TESTS ; do
|
|---|
| 36 | echo $file
|
|---|
| [de10f8d] | 37 | case $file in
|
|---|
| [d4ea980] | 38 | *.pos) input="$srcdir/$file" ;;
|
|---|
| 39 | *) input="$srcdir/$file.3d" ;;
|
|---|
| 40 | esac
|
|---|
| [87681b8] | 41 | rm -f tmp.pos diffpos.tmp
|
|---|
| [d4ea980] | 42 | $TDTOPOS "$input" tmp.pos || exit 1
|
|---|
| 43 | $DIFFPOS "$input" tmp.pos > diffpos.tmp
|
|---|
| [58f02ae] | 44 | if test -n "$VERBOSE" ; then
|
|---|
| [87681b8] | 45 | cat diffpos.tmp
|
|---|
| [58f02ae] | 46 | fi
|
|---|
| [87681b8] | 47 | test -s diffpos.tmp && exit 1
|
|---|
| 48 | rm -f tmp.pos diffpos.tmp
|
|---|
| [58f02ae] | 49 | done
|
|---|
| 50 | exit 0
|
|---|