Licensing: Update copyright dates for Ian Jackson
[adns] / regress / checkall
CommitLineData
1c957fda 1#!/bin/sh
3d5cde09 2# usage: checkall
3# runs all test cases
4#
ae8cc977 5# This file is part of adns, which is
26e1c3d6 6# Copyright (C) 1997-2000,2003,2006,2014 Ian Jackson
ae8cc977 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.)
3d5cde09 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
7f8bbe29 13# the Free Software Foundation; either version 3, or (at your option)
3d5cde09 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
8c09a4c6 22# along with this program; if not, write to the Free Software Foundation.
1c957fda 23
4ac46883 24set -e
25
2dee2b7a 26: ${srcdir=.}
9da4a044 27failed=''
fc6a52ae 28passed=''
4ac46883 29skipped=''
1c957fda 30
2dee2b7a 31for f in $srcdir/case-*.sys
1c957fda 32do
2dee2b7a 33 case="`echo \"$f\" | sed -e 's:^.*/::; s/^case-//; s/\.sys$//'`"
4ac46883 34 set +e
2dee2b7a 35 $srcdir/r1test $case
4ac46883 36 rc=$?
37 set -e
38 case $rc in
39 0) passed="$passed $case" ;;
40 5) skipped="$skipped $case" ;;
41 *) echo
9da4a044 42 failed="$failed $case"
1c957fda 43 echo
4ac46883 44 ;;
45 esac
1c957fda 46done
47
9da4a044 48if [ "x$failed" = x ]
1c957fda 49then
50 echo "
4ac46883 51"
52 if [ "x$skipped" = x ]
53 then
54 echo "all tests passed."
55 else
56 echo "all applicable tests passed (skipped:$skipped)"
57 fi
58 echo
1c957fda 59 exit 0
60fi
61
9da4a044 62echo >&2 "
1c957fda 63AT LEAST ONE TEST FAILED
fc6a52ae 64passed tests:${passed:- NONE}
4ac46883 65skipped tests:${skipped:- NONE}
fc6a52ae 66failed tests:$failed
9da4a044 67"
1c957fda 68
69exit 1