Fix setgid/setuid typo
[findutils.git] / build-aux / check-testfiles.sh
blob38829127cc963c24fb2e9e3766967aae873d011b
1 #! /bin/sh
2 # check-testfiles.sh -- Check we distributed all the test files we need
3 # Copyright (C) 2007 Free Software Foundation, Inc.
4 #
5 # This program is free software: you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation, either version 3 of the License, or
8 # (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with this program. If not, see <http://www.gnu.org/licenses/>.
18 rv=0
21 makelist () {
22 ls "${1}"/*/testsuite/*/*"${2}" | sed -e 's/.*\///' | sort
25 diagnose () {
26 makelist "${distdir}" "$1" > dist"${1}".txt &&
27 makelist "${srcdir}" "$1" > src"${1}".txt &&
28 diff src"${1}".txt dist"${1}".txt
29 rm -f src"${1}".txt dist"${1}".txt
30 echo
34 check_shipfiles () {
35 distcount=`ls ${distdir}/*/testsuite/*/*${suffix} | wc -l`
36 srccount=`ls ${srcdir}/*/testsuite/*/*${suffix} | wc -l`
37 if test $distcount -eq $srccount ; then
38 echo "All $srccount of the $suffix files are accounted for"
39 else
40 echo "ERROR: Missing $suffix files: source $srccount distributed $distcount" >&2
41 rv=1
42 diagnose "${suffix}"
47 main () {
48 distdir="$1"
49 srcdir="$2"
50 shift 2
51 if test "$#" -gt 0 ; then
52 for suffix ; do
53 check_shipfiles "$suffix"
54 done
55 exit $rv
56 else
57 echo "You did not specify any test file suffixes." >&2
58 exit 1
62 main "$@"