source: git/tests/diffpos.tst @ bfc4c77

RELEASE/1.0
Last change on this file since bfc4c77 was bfc4c77, checked in by Olly Betts <olly@…>, 13 years ago

Backport changes from 1.2.0:
doc/index.htm.in,doc/manual.sgml,doc/survex.ent,lib/print.ini,
src/printwx.cc,survex.iss.in: Use http://survex.com/ rather than
http://www.survex.com/ - the former is the canonical name and
www.survex.com just redirects.
COPYING,lib/print.ini,src/riscos/armrot.s,tests/: Update FSF address.

git-svn-id: file:///home/survex-svn/survex/branches/1.0@3704 4b37db11-9a0c-4f06-9ece-9ab7cdaee568

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