Licensing: Add copyright for Mark Wooding
[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
17cd4f48 7# Copyright (C) 2014 Mark Wooding
ae8cc977 8# Copyright (C) 1999-2000,2003,2006 Tony Finch
9# Copyright (C) 1991 Massachusetts Institute of Technology
10# (See the file INSTALL for full details.)
3d5cde09 11#
12# This program is free software; you can redistribute it and/or modify
13# it under the terms of the GNU General Public License as published by
7f8bbe29 14# the Free Software Foundation; either version 3, or (at your option)
3d5cde09 15# any later version.
16#
17# This program is distributed in the hope that it will be useful,
18# but WITHOUT ANY WARRANTY; without even the implied warranty of
19# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20# GNU General Public License for more details.
21#
22# You should have received a copy of the GNU General Public License
8c09a4c6 23# along with this program; if not, write to the Free Software Foundation.
1c957fda 24
4ac46883 25set -e
26
2dee2b7a 27: ${srcdir=.}
9da4a044 28failed=''
fc6a52ae 29passed=''
4ac46883 30skipped=''
1c957fda 31
2dee2b7a 32for f in $srcdir/case-*.sys
1c957fda 33do
2dee2b7a 34 case="`echo \"$f\" | sed -e 's:^.*/::; s/^case-//; s/\.sys$//'`"
4ac46883 35 set +e
2dee2b7a 36 $srcdir/r1test $case
4ac46883 37 rc=$?
38 set -e
39 case $rc in
40 0) passed="$passed $case" ;;
41 5) skipped="$skipped $case" ;;
42 *) echo
9da4a044 43 failed="$failed $case"
1c957fda 44 echo
4ac46883 45 ;;
46 esac
1c957fda 47done
48
9da4a044 49if [ "x$failed" = x ]
1c957fda 50then
51 echo "
4ac46883 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
1c957fda 60 exit 0
61fi
62
9da4a044 63echo >&2 "
1c957fda 64AT LEAST ONE TEST FAILED
fc6a52ae 65passed tests:${passed:- NONE}
4ac46883 66skipped tests:${skipped:- NONE}
fc6a52ae 67failed tests:$failed
9da4a044 68"
1c957fda 69
70exit 1