source: git/tests/smoke.tst @ 38a192d

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

Use if instead of && because we don't want to fail just because the test
condition fails.

git-svn-id: file:///home/survex-svn/survex/branches/survex-1_1@3124 4b37db11-9a0c-4f06-9ece-9ab7cdaee568

  • Property mode set to 100755
File size: 1.4 KB
RevLine 
[9cc3854]1#!/bin/sh
[b4fe9fb]2#
3# Survex test suite - smoke tests
[9f4c06a2]4# Copyright (C) 1999-2003,2005 Olly Betts
[b4fe9fb]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
[9cc3854]19set -e
20
21testdir=`echo $0 | sed 's!/[^/]*$!!' || echo '.'`
22
23# allow us to run tests standalone more easily
24: ${srcdir="$testdir"}
25
26test -x "$testdir"/../src/cavern || testdir=.
27
28: ${CAVERN="$testdir"/../src/cavern}
29: ${DIFFPOS="$testdir"/../src/diffpos}
30
[2571aed]31PROGS="cad3d cavern diffpos extend sorterr 3dtopos"
[1d4a7b3]32# aven tries to open an X display even for --help and --version
[38a192d]33if test -n "$DISPLAY" ; then
34   PROGS="$PROGS aven"
35fi
[9cc3854]36
37for p in ${PROGS}; do
38   echo $p
39   if test -n "$VERBOSE"; then
[b4fe9fb]40      "$testdir/../src/$p" --version
41      "$testdir/../src/$p" --help
[9cc3854]42   else
[b4fe9fb]43      "$testdir/../src/$p" --version > /dev/null
44      "$testdir/../src/$p" --help > /dev/null
[9cc3854]45   fi
46done
47exit 0
Note: See TracBrowser for help on using the repository browser.