3 # Survex test suite - smoke tests
4 # Copyright (C) 1999-2021 Olly Betts
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.
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.
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
20 testdir=`echo $0 | sed 's!/[^/]*$!!' || echo '.'`
22 test -x "$testdir"/../src/cavern || testdir=.
24 # Ensure that --version and --help work without an X display.
28 PROGS="cavern diffpos extend sorterr survexport aven"
30 # Suppress checking for leaks on exit if we're build with lsan - we don't
31 # generally waste effort to free all allocations as the OS will reclaim
33 LSAN_OPTIONS=leak_check_at_exit=0
39 if [ -n "$VALGRIND" ] ; then
41 vgrun="$VALGRIND --log-file=$vg_log --error-exitcode=$vg_error"
46 for o in version help ; do
47 if test -n "$VERBOSE"; then
48 $vgrun "$testdir/../src/$p" --$o
51 $vgrun "$testdir/../src/$p" --$o > /dev/null
54 if [ -s stderr.log ] ; then
55 echo "$p --$o produced output on stderr:"
61 if [ -n "$VALGRIND" ] ; then
62 if [ $exitcode = "$vg_error" ] ; then
69 [ "$exitcode" = 0 ] || exit 1
73 test -n "$VERBOSE" && echo "Test passed"