source: git/tests/extend.tst @ d12294e

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

Backport change from 1.2.0:
tests/: Most tests weren't actually running and testcases (looks like
a sh portability issue). Fixed, and fortunately all tests still
pass.
tests/extend.tst: Fix to file .espec files when srcdir != builddir.

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

  • Property mode set to 100755
File size: 1.8 KB
RevLine 
[01b9d0f]1#!/bin/sh
[d4ea980]2#
3# Survex test suite - extend 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
18# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
[01b9d0f]19
[d4d8efe]20testdir=`echo $0 | sed 's!/[^/]*$!!' || echo '.'`
21
[01b9d0f]22# allow us to run tests standalone more easily
[d4d8efe]23: ${srcdir="$testdir"}
24
25# force VERBOSE if we're run on a subset of tests
26test -n "$*" && VERBOSE=1
[01b9d0f]27
[87681b8]28test -x "$testdir"/../src/cavern || testdir=.
29
[d4d8efe]30: ${CAVERN="$testdir"/../src/cavern}
31: ${EXTEND="$testdir"/../src/extend}
[4d214ec]32: ${DIFFPOS="$testdir"/../src/diffpos}
[01b9d0f]33
[d12294e]34: ${TESTS=${*:-"extend extend2names eswap"}} # also eswap-break
[dc2a4bf]35# JPNP: eswap-break currently fails due to bug in diffpos
[01b9d0f]36
37for file in $TESTS ; do
38  echo $file
[dc2a4bf]39  EXTEND_ARGS=""
[d12294e]40  test -f "$srcdir/$file.espec" && EXTEND_ARGS="--specfile $srcdir/$file.espec"
[87681b8]41  rm -f tmp.*
[d4d8efe]42  if test -n "$VERBOSE" ; then
[d4ea980]43    $CAVERN "$srcdir/$file.svx" --output=tmp || exit 1
[dc2a4bf]44    $EXTEND $EXTEND_ARGS tmp.3d tmp.x.3d || exit 1
[d4ea980]45    $DIFFPOS tmp.x.3d "$srcdir/${file}x.3d" || exit 1
[d4d8efe]46  else
[d4ea980]47    $CAVERN "$srcdir/$file.svx" --output=tmp > /dev/null || exit 1
[dc2a4bf]48    $EXTEND $EXTEND_ARGS tmp.3d tmp.x.3d > /dev/null || exit 1
[d4ea980]49    $DIFFPOS tmp.x.3d "$srcdir/${file}x.3d" > /dev/null || exit 1
[d4d8efe]50  fi
[87681b8]51  rm -f tmp.*
[01b9d0f]52done
53exit 0
Note: See TracBrowser for help on using the repository browser.