source: git/tests/compare.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.9 KB
Line 
1#!/bin/sh
2#
3# Survex test suite - compare 2 versions of cavern on a dataset
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
26#test -n "$*" && VERBOSE=1
27
28test -x "$testdir"/../src/cavern || testdir=.
29
30: ${CAVERN="$testdir"/../src/cavern}
31: ${CAVERN_ORIG=cavern}
32: ${DIFFPOS="$testdir"/../src/diffpos}
33
34: ${TESTS=${*-""}}
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  DIFFPOS="$VALGRIND --log-file=$vg_log --error-exitcode=$vg_error $DIFFPOS"
48fi
49
50for file in $TESTS ; do
51  if test -n "$file" ; then
52    echo "$file"
53    rm -f tmp.* tmp_orig.*
54    if test -n "$VERBOSE" ; then
55      $CAVERN_ORIG "$file" --output=tmp_orig | tee tmp_orig.out || exit 1
56      $CAVERN "$file" --output=tmp | tee tmp.out
57      exitcode=$?
58    else
59      $CAVERN_ORIG "$file" --output=tmp_orig > tmp_orig.out || exit 1
60      $CAVERN "$file" --output=tmp > tmp.out
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    warn_orig=`sed '$!d;s/^There were \([0-9]*\).*/\1/;s/^[^0-9].*$/0/' tmp_orig.out
73    warn=`sed '$!d;s/^There were \([0-9]*\).*/\1/;s/^[^0-9].*$/0/' tmp.out`
74    if test x"$warn_orig" != x"$warn" ; then
75      echo "$CAVERN_ORIG gave $warn_orig warning(s)"
76      echo "$CAVERN gave $warn warning(s)"
77      exit 1
78    fi
79    if test -n "$VERBOSE" ; then
80      $DIFFPOS tmp.3d tmp_orig.3d
81      exitcode=$?
82    else
83      $DIFFPOS tmp.3d tmp_orig.3d > /dev/null
84      exitcode=$?
85    fi
86    if [ -n "$VALGRIND" ] ; then
87      if [ $exitcode = "$vg_error" ] ; then
88        cat "$vg_log"
89        rm "$vg_log"
90        exit 1
91      fi
92      rm "$vg_log"
93    fi
94    [ "$exitcode" = 0 ] || exit 1
95  fi
96done
97test -n "$VERBOSE" && echo "Test passed"
98exit 0
Note: See TracBrowser for help on using the repository browser.