source: git/tests/extend.tst @ 5a45706

RELEASE/1.2debug-cidebug-ci-sanitisersstereowalls-data
Last change on this file since 5a45706 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: 2.7 KB
Line 
1#!/bin/sh
2#
3# Survex test suite - extend tests
4# Copyright (C) 1999-2003,2010,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
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
26test -n "$*" && VERBOSE=1
27
28test -x "$testdir"/../src/cavern || testdir=.
29
30: ${CAVERN="$testdir"/../src/cavern}
31: ${EXTEND="$testdir"/../src/extend}
32: ${DIFFPOS="$testdir"/../src/diffpos}
33
34: ${TESTS=${*:-"extend extend2names eswap eswap-break"}}
35
36vg_error=123
37vg_log=vg.log
38if [ -n "$VALGRIND" ] ; then
39  rm -f "$vg_log"
40  CAVERN="$VALGRIND --log-file=$vg_log --error-exitcode=$vg_error $CAVERN"
41  EXTEND="$VALGRIND --log-file=$vg_log --error-exitcode=$vg_error $EXTEND"
42  DIFFPOS="$VALGRIND --log-file=$vg_log --error-exitcode=$vg_error $DIFFPOS"
43fi
44
45for file in $TESTS ; do
46  echo $file
47  EXTEND_ARGS=""
48  test -f "$srcdir/$file.espec" && EXTEND_ARGS="--specfile $srcdir/$file.espec"
49  rm -f tmp.*
50  if test -n "$VERBOSE" ; then
51    $CAVERN "$srcdir/$file.svx" --output=tmp
52    exitcode=$?
53  else
54    $CAVERN "$srcdir/$file.svx" --output=tmp > /dev/null
55    exitcode=$?
56  fi
57  if [ -n "$VALGRIND" ] ; then
58    if [ $exitcode = "$vg_error" ] ; then
59      cat "$vg_log"
60      rm "$vg_log"
61      exit 1
62    fi
63    rm "$vg_log"
64  fi
65  [ "$exitcode" = 0 ] || exit 1
66  if test -n "$VERBOSE" ; then
67    $EXTEND $EXTEND_ARGS tmp.3d tmp.x.3d
68    exitcode=$?
69  else
70    $EXTEND $EXTEND_ARGS tmp.3d tmp.x.3d > /dev/null
71    exitcode=$?
72  fi
73  if [ -n "$VALGRIND" ] ; then
74    if [ $exitcode = "$vg_error" ] ; then
75      cat "$vg_log"
76      rm "$vg_log"
77      exit 1
78    fi
79    rm "$vg_log"
80  fi
81  [ "$exitcode" = 0 ] || exit 1
82  if test -n "$VERBOSE" ; then
83    $DIFFPOS tmp.x.3d "$srcdir/${file}x.3d"
84    exitcode=$?
85  else
86    $DIFFPOS tmp.x.3d "$srcdir/${file}x.3d" > /dev/null
87    exitcode=$?
88  fi
89  if [ -n "$VALGRIND" ] ; then
90    if [ $exitcode = "$vg_error" ] ; then
91      cat "$vg_log"
92      rm "$vg_log"
93      exit 1
94    fi
95    rm "$vg_log"
96  fi
97  [ "$exitcode" = 0 ] || exit 1
98  rm -f tmp.*
99done
100test -n "$VERBOSE" && echo "Test passed"
101exit 0
Note: See TracBrowser for help on using the repository browser.