source: git/tests/diffpos.tst

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
RevLine 
[fbc3a20]1#!/bin/sh
[d4ea980]2#
3# Survex test suite - diffpos tests
[43e8c72]4# Copyright (C) 1999-2021 Olly Betts
[d4ea980]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
[cc49471]18# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
[6b8ff5b]19
[d4d8efe]20testdir=`echo $0 | sed 's!/[^/]*$!!' || echo '.'`
21
[6b8ff5b]22# allow us to run tests standalone more easily
[d4d8efe]23: ${srcdir="$testdir"}
[647407d]24
[5476de6]25# force VERBOSE if we're run on a subset of tests
26test -n "$*" && VERBOSE=1
27
[87681b8]28test -x "$testdir"/../src/cavern || testdir=.
29
[d4d8efe]30: ${DIFFPOS="$testdir"/../src/diffpos}
[6b8ff5b]31
[e0c8f98]32: ${TESTS=${*:-"delatend addatend"}}
[1422c39]33
[0ebdaa6]34SURVEXLANG=en
35export SURVEXLANG
36
[43e8c72]37# Suppress checking for leaks on exit if we're build with lsan - we don't
38# generally waste effort to free all allocations as the OS will reclaim
39# memory on exit.
40LSAN_OPTIONS=leak_check_at_exit=0
41export LSAN_OPTIONS
42
[38c4c5c]43vg_error=123
44vg_log=vg.log
45if [ -n "$VALGRIND" ] ; then
46  rm -f "$vg_log"
47  DIFFPOS="$VALGRIND --log-file=$vg_log --error-exitcode=$vg_error $DIFFPOS"
48fi
49
[1422c39]50for file in $TESTS ; do
[fbc3a20]51  echo $file
[87681b8]52  rm -f diffpos.tmp
[d4ea980]53  $DIFFPOS "$srcdir/${file}a.pos" "$srcdir/${file}b.pos" > diffpos.tmp
[38c4c5c]54  exitcode=$?
55  if [ -n "$VALGRIND" ] ; then
56    if [ $exitcode = "$vg_error" ] ; then
57      cat "$vg_log"
58      rm "$vg_log"
59      exit 1
60    fi
61    rm "$vg_log"
62  fi
[d4d8efe]63  if test -n "$VERBOSE" ; then
[87681b8]64    cat diffpos.tmp
[d4ea980]65    cmp diffpos.tmp "$srcdir/${file}.out" || exit 1
[d4d8efe]66  else
[d4ea980]67    cmp diffpos.tmp "$srcdir/${file}.out" > /dev/null || exit 1
[d4d8efe]68  fi
[87681b8]69  rm -f diffpos.tmp
[fbc3a20]70done
[4d3dfdf]71
72for args in '' '--survey survey' '--survey survey.xyzzy' '--survey xyzzy' ; do
73  echo "diffpos $args"
74  rm -f diffpos.tmp
[d4ea980]75  $DIFFPOS $args "$srcdir/v0.3d" "$srcdir/v0.3d" > diffpos.tmp
[4d3dfdf]76  if test -n "$VERBOSE" ; then
77    cat diffpos.tmp
78  fi
79  cmp diffpos.tmp /dev/null > /dev/null || exit 1
80  rm -f diffpos.tmp
81done
[bbe0a27]82test -n "$VERBOSE" && echo "Test passed"
[fbc3a20]83exit 0
Note: See TracBrowser for help on using the repository browser.