| 1 | #!/bin/sh |
|---|
| 2 | # |
|---|
| 3 | # Survex test suite - smoke tests |
|---|
| 4 | # Copyright (C) 1999-2003,2005,2011,2012,2014 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 | test -x "$testdir"/../src/cavern || testdir=. |
|---|
| 23 | |
|---|
| 24 | # Ensure that --version and --help work without an X display. |
|---|
| 25 | DISPLAY= |
|---|
| 26 | export DISPLAY |
|---|
| 27 | |
|---|
| 28 | PROGS="cad3d cavern diffpos extend sorterr 3dtopos aven" |
|---|
| 29 | |
|---|
| 30 | vgrun= |
|---|
| 31 | vg_error=123 |
|---|
| 32 | vg_log=vg.log |
|---|
| 33 | if [ -n "$VALGRIND" ] ; then |
|---|
| 34 | rm -f "$vg_log" |
|---|
| 35 | vgrun="$VALGRIND --log-file=$vg_log --error-exitcode=$vg_error" |
|---|
| 36 | fi |
|---|
| 37 | |
|---|
| 38 | for p in ${PROGS}; do |
|---|
| 39 | echo $p |
|---|
| 40 | for o in version help ; do |
|---|
| 41 | if test -n "$VERBOSE"; then |
|---|
| 42 | $vgrun "$testdir/../src/$p" --$o |
|---|
| 43 | exitcode=$? |
|---|
| 44 | else |
|---|
| 45 | $vgrun "$testdir/../src/$p" --$o > /dev/null |
|---|
| 46 | exitcode=$? |
|---|
| 47 | fi 2> stderr.log |
|---|
| 48 | if [ -s stderr.log ] ; then |
|---|
| 49 | echo "$p --$o produced output on stderr:" |
|---|
| 50 | cat stderr.log |
|---|
| 51 | rm stderr.log |
|---|
| 52 | exit 1 |
|---|
| 53 | fi |
|---|
| 54 | rm stderr.log |
|---|
| 55 | if [ -n "$VALGRIND" ] ; then |
|---|
| 56 | if [ $exitcode = "$vg_error" ] ; then |
|---|
| 57 | cat "$vg_log" |
|---|
| 58 | rm "$vg_log" |
|---|
| 59 | exit 1 |
|---|
| 60 | fi |
|---|
| 61 | rm "$vg_log" |
|---|
| 62 | fi |
|---|
| 63 | [ "$exitcode" = 0 ] || exit 1 |
|---|
| 64 | done |
|---|
| 65 | done |
|---|
| 66 | |
|---|
| 67 | : ${AVEN="$testdir"/../src/aven} |
|---|
| 68 | |
|---|
| 69 | # Regression test - aven in 1.2.6 segfaulted here: |
|---|
| 70 | echo "SURVEXLANG=nosuch aven" |
|---|
| 71 | if test -n "$VERBOSE"; then |
|---|
| 72 | SURVEXLANG=nosuch $vgrun "$testdir/../src/aven" |
|---|
| 73 | exitcode=$? |
|---|
| 74 | else |
|---|
| 75 | SURVEXLANG=nosuch $vgrun "$testdir/../src/aven" >/dev/null |
|---|
| 76 | exitcode=$? |
|---|
| 77 | fi 2>/dev/null |
|---|
| 78 | if [ -n "$VALGRIND" ] ; then |
|---|
| 79 | if [ $exitcode = "$vg_error" ] ; then |
|---|
| 80 | cat "$vg_log" |
|---|
| 81 | rm "$vg_log" |
|---|
| 82 | exit 1 |
|---|
| 83 | fi |
|---|
| 84 | rm "$vg_log" |
|---|
| 85 | fi |
|---|
| 86 | [ "$exitcode" = 1 ] || exit 1 |
|---|
| 87 | |
|---|
| 88 | # Regression test - aven in 1.2.6 segfaulted here: |
|---|
| 89 | echo "SURVEXLANG= LANG=nosuch aven" |
|---|
| 90 | if test -n "$VERBOSE"; then |
|---|
| 91 | SURVEXLANG= LANG=nosuch $vgrun "$testdir/../src/aven" |
|---|
| 92 | exitcode=$? |
|---|
| 93 | else |
|---|
| 94 | SURVEXLANG= LANG=nosuch $vgrun "$testdir/../src/aven" >/dev/null |
|---|
| 95 | exitcode=$? |
|---|
| 96 | fi 2>/dev/null |
|---|
| 97 | if [ -n "$VALGRIND" ] ; then |
|---|
| 98 | if [ $exitcode = "$vg_error" ] ; then |
|---|
| 99 | cat "$vg_log" |
|---|
| 100 | rm "$vg_log" |
|---|
| 101 | exit 1 |
|---|
| 102 | fi |
|---|
| 103 | rm "$vg_log" |
|---|
| 104 | fi |
|---|
| 105 | [ "$exitcode" = 255 ] || exit 1 |
|---|
| 106 | |
|---|
| 107 | test -n "$VERBOSE" && echo "Test passed" |
|---|
| 108 | exit 0 |
|---|