| 1 | #!/bin/sh |
|---|
| 2 | # |
|---|
| 3 | # Survex test suite - smoke tests |
|---|
| 4 | # Copyright (C) 1999-2003,2005 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 | set -e |
|---|
| 20 | |
|---|
| 21 | testdir=`echo $0 | sed 's!/[^/]*$!!' || echo '.'` |
|---|
| 22 | |
|---|
| 23 | # allow us to run tests standalone more easily |
|---|
| 24 | : ${srcdir="$testdir"} |
|---|
| 25 | |
|---|
| 26 | test -x "$testdir"/../src/cavern || testdir=. |
|---|
| 27 | |
|---|
| 28 | : ${CAVERN="$testdir"/../src/cavern} |
|---|
| 29 | : ${DIFFPOS="$testdir"/../src/diffpos} |
|---|
| 30 | |
|---|
| 31 | PROGS="cad3d cavern printdm printps printpcl printhpgl diffpos extend sorterr\ |
|---|
| 32 | 3dtopos" |
|---|
| 33 | if test -r "$testdir"/../src/xcaverot ; then |
|---|
| 34 | PROGS="$PROGS xcaverot" |
|---|
| 35 | fi |
|---|
| 36 | # aven tries to open an X display even for --help and --version |
|---|
| 37 | if test -n "$DISPLAY" && test -r "$testdir"/../src/aven ; then |
|---|
| 38 | PROGS="$PROGS aven" |
|---|
| 39 | fi |
|---|
| 40 | |
|---|
| 41 | for p in ${PROGS}; do |
|---|
| 42 | echo $p |
|---|
| 43 | if test -n "$VERBOSE"; then |
|---|
| 44 | "$testdir/../src/$p" --version |
|---|
| 45 | "$testdir/../src/$p" --help |
|---|
| 46 | else |
|---|
| 47 | "$testdir/../src/$p" --version > /dev/null |
|---|
| 48 | "$testdir/../src/$p" --help > /dev/null |
|---|
| 49 | fi |
|---|
| 50 | done |
|---|
| 51 | exit 0 |
|---|