source: git/tests/diffpos.tst @ 19d71fc9

RELEASE/1.0RELEASE/1.1RELEASE/1.2debug-cidebug-ci-sanitisersfaster-cavernloglog-selectstereostereo-2025walls-datawalls-data-hanging-as-warningwarn-only-for-hanging-survey
Last change on this file since 19d71fc9 was 0938f88, checked in by Olly Betts <olly@…>, 24 years ago

Fixed default value code. Updated extend.tst to include station flags.

git-svn-id: file:///home/survex-svn/survex/trunk@937 4b37db11-9a0c-4f06-9ece-9ab7cdaee568

  • Property mode set to 100755
File size: 355 bytes
RevLine 
[fbc3a20]1#!/bin/sh
[6b8ff5b]2
3# allow us to run tests standalone more easily
[647407d]4: ${srcdir=.}
5
6: ${DIFFPOS=../src/diffpos}
[6b8ff5b]7
[0938f88]8: ${TESTS=${*-"delatend addatend"}}
[1422c39]9
10for file in $TESTS ; do
[fbc3a20]11  echo $file
12  rm -f diffpos.tmp
[647407d]13  $DIFFPOS $srcdir/${file}a.pos $srcdir/${file}b.pos > diffpos.tmp
[fbc3a20]14  cmp diffpos.tmp $srcdir/${file}.out > /dev/null || exit 1
15  rm -f diffpos.tmp
16done
17exit 0
Note: See TracBrowser for help on using the repository browser.