| [fbc3a20] | 1 | #!/bin/sh |
|---|
| [d4ea980] | 2 | # |
|---|
| 3 | # Survex test suite - diffpos tests |
|---|
| [a948c08] | 4 | # Copyright (C) 1999-2025 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] | 20 | testdir=`echo $0 | sed 's!/[^/]*$!!' || echo '.'` |
|---|
| 21 | |
|---|
| [6b8ff5b] | 22 | # allow us to run tests standalone more easily |
|---|
| [d4d8efe] | 23 | : ${srcdir="$testdir"} |
|---|
| [87fcddb] | 24 | if [ -z "$SURVEXLIB" ] ; then |
|---|
| 25 | SURVEXLIB=`cd "$srcdir/../lib" && pwd` |
|---|
| 26 | export SURVEXLIB |
|---|
| [ed34f49] | 27 | fi |
|---|
| [647407d] | 28 | |
|---|
| [5476de6] | 29 | # force VERBOSE if we're run on a subset of tests |
|---|
| 30 | test -n "$*" && VERBOSE=1 |
|---|
| 31 | |
|---|
| [87681b8] | 32 | test -x "$testdir"/../src/cavern || testdir=. |
|---|
| 33 | |
|---|
| [6448891] | 34 | case `uname -a` in |
|---|
| 35 | MINGW*) |
|---|
| 36 | DIFF='diff --strip-trailing-cr' |
|---|
| 37 | QUIET_DIFF='diff -q --strip-trailing-cr' |
|---|
| 38 | ;; |
|---|
| 39 | *) |
|---|
| 40 | DIFF=diff |
|---|
| 41 | # Use cmp when we can as a small optimisation. |
|---|
| 42 | QUIET_DIFF='cmp -s' |
|---|
| 43 | ;; |
|---|
| 44 | esac |
|---|
| 45 | |
|---|
| [d4d8efe] | 46 | : ${DIFFPOS="$testdir"/../src/diffpos} |
|---|
| [6b8ff5b] | 47 | |
|---|
| [e0c8f98] | 48 | : ${TESTS=${*:-"delatend addatend"}} |
|---|
| [1422c39] | 49 | |
|---|
| [0ebdaa6] | 50 | SURVEXLANG=en |
|---|
| 51 | export SURVEXLANG |
|---|
| 52 | |
|---|
| [43e8c72] | 53 | # Suppress checking for leaks on exit if we're build with lsan - we don't |
|---|
| 54 | # generally waste effort to free all allocations as the OS will reclaim |
|---|
| 55 | # memory on exit. |
|---|
| 56 | LSAN_OPTIONS=leak_check_at_exit=0 |
|---|
| 57 | export LSAN_OPTIONS |
|---|
| 58 | |
|---|
| [38c4c5c] | 59 | vg_error=123 |
|---|
| 60 | vg_log=vg.log |
|---|
| 61 | if [ -n "$VALGRIND" ] ; then |
|---|
| 62 | rm -f "$vg_log" |
|---|
| 63 | DIFFPOS="$VALGRIND --log-file=$vg_log --error-exitcode=$vg_error $DIFFPOS" |
|---|
| 64 | fi |
|---|
| 65 | |
|---|
| [1422c39] | 66 | for file in $TESTS ; do |
|---|
| [fbc3a20] | 67 | echo $file |
|---|
| [87681b8] | 68 | rm -f diffpos.tmp |
|---|
| [d4ea980] | 69 | $DIFFPOS "$srcdir/${file}a.pos" "$srcdir/${file}b.pos" > diffpos.tmp |
|---|
| [38c4c5c] | 70 | exitcode=$? |
|---|
| 71 | if [ -n "$VALGRIND" ] ; then |
|---|
| 72 | if [ $exitcode = "$vg_error" ] ; then |
|---|
| 73 | cat "$vg_log" |
|---|
| 74 | rm "$vg_log" |
|---|
| 75 | exit 1 |
|---|
| 76 | fi |
|---|
| 77 | rm "$vg_log" |
|---|
| 78 | fi |
|---|
| [a948c08] | 79 | if ! $QUIET_DIFF diffpos.tmp "$srcdir/${file}.out" > /dev/null ; then |
|---|
| 80 | [ -z "$VERBOSE"] || $DIFF diffpos.tmp "$srcdir/${file}.out" |
|---|
| 81 | exit 1 |
|---|
| [d4d8efe] | 82 | fi |
|---|
| [87681b8] | 83 | rm -f diffpos.tmp |
|---|
| [fbc3a20] | 84 | done |
|---|
| [4d3dfdf] | 85 | |
|---|
| 86 | for args in '' '--survey survey' '--survey survey.xyzzy' '--survey xyzzy' ; do |
|---|
| 87 | echo "diffpos $args" |
|---|
| 88 | rm -f diffpos.tmp |
|---|
| [d4ea980] | 89 | $DIFFPOS $args "$srcdir/v0.3d" "$srcdir/v0.3d" > diffpos.tmp |
|---|
| [a948c08] | 90 | exitcode=$? |
|---|
| 91 | if [ $exitcode != 0 ] ; then |
|---|
| 92 | [ -z "$VERBOSE"] || cat diffpos.tmp |
|---|
| 93 | fi |
|---|
| 94 | if ! $QUIET_DIFF diffpos.tmp /dev/null > /dev/null ; then |
|---|
| 95 | [ -z "$VERBOSE"] || $DIFF diffpos.tmp /dev/null |
|---|
| 96 | exit 1 |
|---|
| [4d3dfdf] | 97 | fi |
|---|
| 98 | rm -f diffpos.tmp |
|---|
| 99 | done |
|---|
| [bbe0a27] | 100 | test -n "$VERBOSE" && echo "Test passed" |
|---|
| [fbc3a20] | 101 | exit 0 |
|---|