chiark / gitweb /
Hacking to make out-of-tree builds work properly.
[adns] / regress / checkall
CommitLineData
e9d74277 1#!/bin/sh
89435c42 2# usage: checkall
3# runs all test cases
4#
39f45e7e 5# This file is part of adns, which is
6# Copyright (C) 1997-2000,2003,2006 Ian Jackson
7# Copyright (C) 1999-2000,2003,2006 Tony Finch
8# Copyright (C) 1991 Massachusetts Institute of Technology
9# (See the file INSTALL for full details.)
89435c42 10#
11# This program is free software; you can redistribute it and/or modify
12# it under the terms of the GNU General Public License as published by
13# the Free Software Foundation; either version 2, or (at your option)
14# any later version.
15#
16# This program is distributed in the hope that it will be useful,
17# but WITHOUT ANY WARRANTY; without even the implied warranty of
18# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19# GNU General Public License for more details.
20#
21# You should have received a copy of the GNU General Public License
22# along with this program; if not, write to the Free Software Foundation,
23# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
e9d74277 24
ac45858e 25set -e
26
34d5f7a9 27: ${srcdir=.}
c2875680 28failed=''
4f973eb5 29passed=''
ac45858e 30skipped=''
e9d74277 31
34d5f7a9 32for f in $srcdir/case-*.sys
e9d74277 33do
34d5f7a9 34 case="`echo \"$f\" | sed -e 's:^.*/::; s/^case-//; s/\.sys$//'`"
ac45858e 35 set +e
34d5f7a9 36 $srcdir/r1test $case
ac45858e 37 rc=$?
38 set -e
39 case $rc in
40 0) passed="$passed $case" ;;
41 5) skipped="$skipped $case" ;;
42 *) echo
c2875680 43 failed="$failed $case"
e9d74277 44 echo
ac45858e 45 ;;
46 esac
e9d74277 47done
48
c2875680 49if [ "x$failed" = x ]
e9d74277 50then
51 echo "
ac45858e 52"
53 if [ "x$skipped" = x ]
54 then
55 echo "all tests passed."
56 else
57 echo "all applicable tests passed (skipped:$skipped)"
58 fi
59 echo
e9d74277 60 exit 0
61fi
62
c2875680 63echo >&2 "
e9d74277 64AT LEAST ONE TEST FAILED
4f973eb5 65passed tests:${passed:- NONE}
ac45858e 66skipped tests:${skipped:- NONE}
4f973eb5 67failed tests:$failed
c2875680 68"
e9d74277 69
70exit 1