Set up scratch directory for tests.
[rsync/rsync.git] / testsuite / master.test
... / ...
CommitLineData
1#! /bin/sh
2
3# Copyright (C) 2001 by Martin Pool <mbp@samba.org>
4
5# rsync top-level test script -- this invokes all the other more
6# detailed tests in order. This script can either be called by 'make
7# check' or through 'runlist' from the build farm.
8
9# We need a few environment variables to know what to test.
10
11# rsync_bin gives the location of the rsync binary. This is either
12# builddir/rsync if we're testing an uninstalled copy, or
13# install_prefix/bin/rsync if we're testing an installed copy. On the
14# build farm rsync will be installed, but into a scratch /usr.
15
16# srcdir gives the location of the source tree, which lets us find the
17# build scripts. It might be relative, so we need to make it
18# absolute.
19
20# testdir is a scratch directory for holding temporary test files.
21
22# The pwd is undefined when this script starts.
23
24set -e
25
26if ! [ -d "$testdir" ] && ! mkdir "$testdir"
27then
28 echo "warning: testdir $testdir is not a directory!" >&2
29 exit 1
30fi
31
32testdir=`cd $testdir && pwd`
33
34srcdir=`cd $srcdir && pwd`
35
36echo "============================================================"
37echo "$0 running in `pwd`"
38echo " rsync_bin=$rsync_bin"
39echo " srcdir=$srcdir"
40echo " testdir=$testdir"
41
42test_names="rsync-hello hands"
43
44export rsync_bin
45export testdir
46
47skipped=0
48missing=0
49passed=0
50failed=0
51
52suitedir="$srcdir/testsuite"
53cd "$suitedir"
54echo " suitedir=$suitedir"
55
56for testbase in $test_names
57do
58 testscript="./$testbase.test"
59 if test \! -f "$testscript"
60 then
61 echo "$testscript does not exist" >&2
62 missing=`expr $missing + 1`
63 continue
64 fi
65
66 echo "------------------------------------------------------------"
67 echo "----- $testbase running"
68
69 if sh $testscript
70 then
71 echo "----- $testbase completed succesfully"
72 passed=`expr $passed + 1`
73 else
74 echo "----- $testbase failed!"
75 failed=`expr $failed + 1`
76 fi
77done
78
79echo '------------------------------------------------------------'
80echo "----- overall results:"
81echo " $passed passed"
82echo " $failed failed"
83echo " $skipped skipped"
84echo " $missing missing"
85echo '------------------------------------------------------------'