source: vendor/current/testprogs/blackbox/subunit.sh

Last change on this file was 988, checked in by Silvan Scherrer, 9 years ago

Samba Server: update vendor to version 4.4.3

File size: 2.8 KB
Line 
1#
2# subunit.sh: shell functions to report test status via the subunit protocol.
3# Copyright (C) 2006 Robert Collins <robertc@robertcollins.net>
4# Copyright (C) 2008 Jelmer Vernooij <jelmer@samba.org>
5#
6# This program is free software; you can redistribute it and/or modify
7# it under the terms of the GNU General Public License as published by
8# the Free Software Foundation; either version 2 of the License, or
9# (at your option) any later version.
10#
11# This program is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14# GNU General Public License for more details.
15#
16# You should have received a copy of the GNU General Public License
17# along with this program; if not, write to the Free Software
18# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19#
20
21subunit_start_test () {
22 # emit the current protocol start-marker for test $1
23 echo "test: $1"
24}
25
26
27subunit_pass_test () {
28 # emit the current protocol test passed marker for test $1
29 echo "success: $1"
30}
31
32# This is just a hack as we have some broken scripts
33# which use "exit $failed", without initializing failed.
34failed=0
35
36subunit_fail_test () {
37 # emit the current protocol fail-marker for test $1, and emit stdin as
38 # the error text.
39 # we use stdin because the failure message can be arbitrarily long, and this
40 # makes it convenient to write in scripts (using <<END syntax.
41 echo "failure: $1 ["
42 cat -
43 echo "]"
44}
45
46
47subunit_error_test () {
48 # emit the current protocol error-marker for test $1, and emit stdin as
49 # the error text.
50 # we use stdin because the failure message can be arbitrarily long, and this
51 # makes it convenient to write in scripts (using <<END syntax.
52 echo "error: $1 ["
53 cat -
54 echo "]"
55}
56
57subunit_skip_test () {
58 # emit the current protocol skip-marker for test $1, and emit stdin as
59 # the error text.
60 # we use stdin because the failure message can be arbitrarily long, and this
61 # makes it convenient to write in scripts (using <<END syntax.
62 echo "skip: $1 ["
63 cat -
64 echo "]"
65}
66
67testit () {
68 name="$1"
69 shift
70 cmdline="$*"
71 subunit_start_test "$name"
72 output=`$cmdline 2>&1`
73 status=$?
74 if [ x$status = x0 ]; then
75 subunit_pass_test "$name"
76 else
77 echo "$output" | subunit_fail_test "$name"
78 fi
79 return $status
80}
81
82testit_expect_failure () {
83 name="$1"
84 shift
85 cmdline="$*"
86 subunit_start_test "$name"
87 output=`$cmdline 2>&1`
88 status=$?
89 if [ x$status = x0 ]; then
90 echo "$output" | subunit_fail_test "$name"
91 else
92 subunit_pass_test "$name"
93 fi
94 return $status
95}
96
97testok () {
98 name=`basename $1`
99 shift
100 failed=$2
101 shift
102
103 exit $failed
104}
105
106# work out the top level source directory
107if [ -d source4 ]; then
108 SRCDIR="."
109else
110 SRCDIR=".."
111fi
112export SRCDIR
Note: See TracBrowser for help on using the repository browser.