]> git.ipfire.org Git - thirdparty/rsync.git/blob - runtests.sh
Redraft testsuite driver script to unify 'make check', 'make
[thirdparty/rsync.git] / runtests.sh
1 #! /bin/sh
2
3 # Copyright (C) 2001 by Martin Pool <mbp@samba.org>
4
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU Lesser General Public License version
7 # 2.1 as published by the Free Software Foundation.
8 #
9 # This program is distributed in the hope that it will be useful, but
10 # WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 # Lesser General Public License for more details.
13 #
14 # You should have received a copy of the GNU Lesser General Public
15 # License along with this program; if not, write to the Free Software
16 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18
19 # rsync top-level test script -- this invokes all the other more
20 # detailed tests in order. This script can either be called by `make
21 # check' or `make installcheck'. `check' runs against the copies of
22 # the program and other files in the build directory, and
23 # `installcheck' against the installed copy of the program.
24
25 # In either case we need to also be able to find the source directory,
26 # since we read test scripts and possibly other information from
27 # there.
28
29 # Whenever possible, informational messages are written to stdout and
30 # error messages to stderr. They're separated out by the build farm
31 # display scripts.
32
33 # According to the GNU autoconf manual, the only valid place to set up
34 # directory locations is through Make, since users are allowed to (try
35 # to) change their mind on the Make command line. So, Make has to
36 # pass in all the values we need.
37
38 # For other configured settings we read ./config.sh, which tells us
39 # about shell commands on this machine and similar things.
40
41 # rsync_bin gives the location of the rsync binary. This is either
42 # builddir/rsync if we're testing an uninstalled copy, or
43 # install_prefix/bin/rsync if we're testing an installed copy. On the
44 # build farm rsync will be installed, but into a scratch /usr.
45
46 # srcdir gives the location of the source tree, which lets us find the
47 # build scripts. At the moment we assume we are invoked from the
48 # source directory.
49
50 # This script must be invoked from the build directory.
51
52 # A scratch directory, 'testtmp', is created in the build directory to
53 # hold working files.
54
55 # Both this script and the Makefile have to be pretty conservative
56 # about which Unix features they use.
57
58 # Exit codes: (passed back to build farm):
59
60 # 1 tests failed
61 # 2 error in starting tests
62
63
64 set -e
65
66 . "./shconfig"
67
68
69 echo "============================================================"
70 echo "$0 running in `pwd`"
71 echo " rsync_bin=$rsync_bin"
72 echo " srcdir=$srcdir"
73
74 if ! test -f $rsync_bin
75 then
76 echo "rsync_bin $rsync_bin is not a file" >&2
77 exit 2
78 fi
79
80 if ! test -d $srcdir
81 then
82 echo "srcdir $srcdir is not a directory" >&2
83 exit 2
84 fi
85
86
87 export rsync_bin
88
89 skipped=0
90 missing=0
91 passed=0
92 failed=0
93
94 scratchdir=./testtmp
95 [ -d "$scratchdir" ] && rm -r "$scratchdir"
96 mkdir "$scratchdir"
97
98 echo " scratchdir=$scratchdir"
99 suitedir="$srcdir/testsuite"
100
101 for testbase in rsync-hello hands
102 do
103 testscript="$suitedir/$testbase.test"
104 if test \! -f "$testscript"
105 then
106 echo "$testscript does not exist" >&2
107 missing=`expr $missing + 1`
108 continue
109 fi
110
111 echo "------------------------------------------------------------"
112 echo "----- $testbase running"
113
114 if sh "$testscript"
115 then
116 echo "----- $testbase completed succesfully"
117 passed=`expr $passed + 1`
118 else
119 echo "----- $testbase failed!"
120 failed=`expr $failed + 1`
121 fi
122 done
123
124 echo '------------------------------------------------------------'
125 echo "----- overall results:"
126 echo " $passed passed"
127 echo " $failed failed"
128 echo " $skipped skipped"
129 echo " $missing missing"
130 echo '------------------------------------------------------------'
131
132 if test $failed -gt 0
133 then
134 exit 1
135 else
136 exit 0
137 fi