source: git/tests/3dtopos.tst

walls-data
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: 2.3 KB
Line 
1#!/bin/sh
2#
3# Survex test suite - 3d to pos 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: ${DIFFPOS="$testdir"/../src/diffpos}
31: ${SURVEXPORT="$testdir"/../src/survexport}
32
33: ${TESTS=${*:-"pos.pos v0 v0b v1 v2 v3"}}
34
35# Suppress checking for leaks on exit if we're build with lsan - we don't
36# generally waste effort to free all allocations as the OS will reclaim
37# memory on exit.
38LSAN_OPTIONS=leak_check_at_exit=0
39export LSAN_OPTIONS
40
41vg_error=123
42vg_log=vg.log
43if [ -n "$VALGRIND" ] ; then
44  rm -f "$vg_log"
45  SURVEXPORT="$VALGRIND --log-file=$vg_log --error-exitcode=$vg_error $SURVEXPORT"
46  DIFFPOS="$VALGRIND --log-file=$vg_log --error-exitcode=$vg_error $DIFFPOS"
47fi
48
49for file in $TESTS ; do
50  echo $file
51  case $file in
52  *.pos) input="$srcdir/$file" ;;
53  *) input="$srcdir/$file.3d" ;;
54  esac
55  rm -f tmp.pos diffpos.tmp
56  $SURVEXPORT "$input" tmp.pos
57  exitcode=$?
58  if [ -n "$VALGRIND" ] ; then
59    if [ $exitcode = "$vg_error" ] ; then
60      cat "$vg_log"
61      rm "$vg_log"
62      exit 1
63    fi
64    rm "$vg_log"
65  fi
66  test $exitcode = 0 || exit 1
67  $DIFFPOS "$input" tmp.pos > diffpos.tmp
68  exitcode=$?
69  if test -n "$VERBOSE" ; then
70    cat diffpos.tmp
71  fi
72  if [ -n "$VALGRIND" ] ; then
73    if [ $exitcode = "$vg_error" ] ; then
74      cat "$vg_log"
75      rm "$vg_log"
76      exit 1
77    fi
78    rm "$vg_log"
79  fi
80  test -s diffpos.tmp && exit 1
81  rm -f tmp.pos diffpos.tmp
82done
83test -n "$VERBOSE" && echo "Test passed"
84exit 0
Note: See TracBrowser for help on using the repository browser.