NEWS: Remove inaccurate claim for 1.4.2
[survex.git] / tests / 3dtopos.tst
blob02bd8d8abcd90aa23c628457c2a8f6fa28dfaa20
1 #!/bin/sh
3 # Survex test suite - 3d to pos tests
4 # Copyright (C) 1999-2021 Olly Betts
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.
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.
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
20 testdir=`echo $0 | sed 's!/[^/]*$!!' || echo '.'`
22 # allow us to run tests standalone more easily
23 : ${srcdir="$testdir"}
25 # force VERBOSE if we're run on a subset of tests
26 test -n "$*" && VERBOSE=1
28 test -x "$testdir"/../src/cavern || testdir=.
30 : ${DIFFPOS="$testdir"/../src/diffpos}
31 : ${SURVEXPORT="$testdir"/../src/survexport}
33 : ${TESTS=${*:-"pos.pos v0 v0b v1 v2 v3"}}
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.
38 LSAN_OPTIONS=leak_check_at_exit=0
39 export LSAN_OPTIONS
41 vg_error=123
42 vg_log=vg.log
43 if [ -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"
49 for 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
82 done
83 test -n "$VERBOSE" && echo "Test passed"
84 exit 0