source: git/tests/diffpos.tst @ e963c8c

RELEASE/1.2debug-cidebug-ci-sanitisersstereowalls-datawalls-data-hanging-as-warning
Last change on this file since e963c8c was bbe0a27, checked in by Olly Betts <olly@…>, 11 years ago

tests/: Make all test scripts report "Test passed" at the end if
VERBOSE is set and all testcases in the script passed.

  • Property mode set to 100755
File size: 1.8 KB
Line 
1#!/bin/sh
2#
3# Survex test suite - diffpos tests
4# Copyright (C) 1999-2003,2010,2012 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
32: ${TESTS=${*:-"delatend addatend"}}
33
34SURVEXLANG=en
35export SURVEXLANG
36
37for file in $TESTS ; do
38  echo $file
39  rm -f diffpos.tmp
40  $DIFFPOS "$srcdir/${file}a.pos" "$srcdir/${file}b.pos" > diffpos.tmp
41  if test -n "$VERBOSE" ; then
42    cat diffpos.tmp
43    cmp diffpos.tmp "$srcdir/${file}.out" || exit 1
44  else
45    cmp diffpos.tmp "$srcdir/${file}.out" > /dev/null || exit 1
46  fi
47  rm -f diffpos.tmp
48done
49
50for args in '' '--survey survey' '--survey survey.xyzzy' '--survey xyzzy' ; do
51  echo "diffpos $args"
52  rm -f diffpos.tmp
53  $DIFFPOS $args "$srcdir/v0.3d" "$srcdir/v0.3d" > diffpos.tmp
54  if test -n "$VERBOSE" ; then
55    cat diffpos.tmp
56  fi
57  cmp diffpos.tmp /dev/null > /dev/null || exit 1
58  rm -f diffpos.tmp
59done
60test -n "$VERBOSE" && echo "Test passed"
61exit 0
Note: See TracBrowser for help on using the repository browser.