source: git/tests/extend.tst

walls-data-hanging-as-warning
Last change on this file was 43e8c72, checked in by Olly Betts <olly@…>, 3 years ago

Suppress lsan leak checking on exit

If the tree is built with LeakSanitiser? then some tests fail due to
us not releasing all memory explicitly on exit (doing so would mean
extra work for no reason as the OS reclaims all memory when the
process exits). If LeakSanitiser? isn't in use then setting LSAN_OPTIONS
should be harmless.

  • Property mode set to 100755
File size: 3.0 KB
Line 
1#!/bin/sh
2#
3# Survex test suite - extend tests
4# Copyright (C) 1999-2021 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
36# Suppress checking for leaks on exit if we're build with lsan - we don't
37# generally waste effort to free all allocations as the OS will reclaim
38# memory on exit.
39LSAN_OPTIONS=leak_check_at_exit=0
40export LSAN_OPTIONS
41
42vg_error=123
43vg_log=vg.log
44if [ -n "$VALGRIND" ] ; then
45  rm -f "$vg_log"
46  CAVERN="$VALGRIND --log-file=$vg_log --error-exitcode=$vg_error $CAVERN"
47  EXTEND="$VALGRIND --log-file=$vg_log --error-exitcode=$vg_error $EXTEND"
48  DIFFPOS="$VALGRIND --log-file=$vg_log --error-exitcode=$vg_error $DIFFPOS"
49fi
50
51for file in $TESTS ; do
52  echo $file
53  EXTEND_ARGS=""
54  test -f "$srcdir/$file.espec" && EXTEND_ARGS="--specfile $srcdir/$file.espec"
55  rm -f tmp.*
56  if test -n "$VERBOSE" ; then
57    $CAVERN "$srcdir/$file.svx" --output=tmp
58    exitcode=$?
59  else
60    $CAVERN "$srcdir/$file.svx" --output=tmp > /dev/null
61    exitcode=$?
62  fi
63  if [ -n "$VALGRIND" ] ; then
64    if [ $exitcode = "$vg_error" ] ; then
65      cat "$vg_log"
66      rm "$vg_log"
67      exit 1
68    fi
69    rm "$vg_log"
70  fi
71  [ "$exitcode" = 0 ] || exit 1
72  if test -n "$VERBOSE" ; then
73    $EXTEND $EXTEND_ARGS tmp.3d tmp.x.3d
74    exitcode=$?
75  else
76    $EXTEND $EXTEND_ARGS tmp.3d tmp.x.3d > /dev/null
77    exitcode=$?
78  fi
79  if [ -n "$VALGRIND" ] ; then
80    if [ $exitcode = "$vg_error" ] ; then
81      cat "$vg_log"
82      rm "$vg_log"
83      exit 1
84    fi
85    rm "$vg_log"
86  fi
87  [ "$exitcode" = 0 ] || exit 1
88  if test -n "$VERBOSE" ; then
89    $DIFFPOS tmp.x.3d "$srcdir/${file}x.3d"
90    exitcode=$?
91  else
92    $DIFFPOS tmp.x.3d "$srcdir/${file}x.3d" > /dev/null
93    exitcode=$?
94  fi
95  if [ -n "$VALGRIND" ] ; then
96    if [ $exitcode = "$vg_error" ] ; then
97      cat "$vg_log"
98      rm "$vg_log"
99      exit 1
100    fi
101    rm "$vg_log"
102  fi
103  [ "$exitcode" = 0 ] || exit 1
104  rm -f tmp.*
105done
106test -n "$VERBOSE" && echo "Test passed"
107exit 0
Note: See TracBrowser for help on using the repository browser.