source: git/tests/smoke.tst @ d4885c3

RELEASE/1.2debug-cidebug-ci-sanitisersfaster-cavernlogstereowalls-datawalls-data-hanging-as-warning
Last change on this file since d4885c3 was 33a2d49, checked in by Olly Betts <olly@…>, 11 years ago

tests/cavern.tst,tests/extend.tst,tests/smoke.tst: Add valgrind hooks
to the rest of the tests scripts.

  • Property mode set to 100755
File size: 1.6 KB
Line 
1#!/bin/sh
2#
3# Survex test suite - smoke tests
4# Copyright (C) 1999-2003,2005,2011,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
20testdir=`echo $0 | sed 's!/[^/]*$!!' || echo '.'`
21
22test -x "$testdir"/../src/cavern || testdir=.
23
24# Ensure that --version and --help work without an X display.
25DISPLAY=
26export DISPLAY
27
28PROGS="cad3d cavern diffpos extend sorterr 3dtopos aven"
29
30vgrun=
31vg_error=123
32vg_log=vg.log
33if [ -n "$VALGRIND" ] ; then
34  rm -f "$vg_log"
35  vgrun="$VALGRIND --log-file=$vg_log --error-exitcode=$vg_error"
36fi
37
38for 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
48    if [ -n "$VALGRIND" ] ; then
49      if [ $exitcode = "$vg_error" ] ; then
50        cat "$vg_log"
51        rm "$vg_log"
52        exit 1
53      fi
54      rm "$vg_log"
55    fi
56    [ "$exitcode" = 0 ] || exit 1
57  done
58done
59test -n "$VERBOSE" && echo "Test passed"
60exit 0
Note: See TracBrowser for help on using the repository browser.