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>
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.
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.
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
21 subunit_start_test
() {
22 # emit the current protocol start-marker for test $1
27 subunit_pass_test
() {
28 # emit the current protocol test passed marker for test $1
32 # This is just a hack as we have some broken scripts
33 # which use "exit $failed", without initializing failed.
36 subunit_fail_test
() {
37 # emit the current protocol fail-marker for test $1, and emit stdin as
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.
47 subunit_error_test
() {
48 # emit the current protocol error-marker for test $1, and emit stdin as
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.
61 subunit_start_test
"$name"
62 output
=`$cmdline 2>&1`
64 if [ x
$status = x0
]; then
65 subunit_pass_test
"$name"
67 echo "$output" | subunit_fail_test
"$name"
72 testit_expect_failure
() {
76 subunit_start_test
"$name"
77 output
=`$cmdline 2>&1`
79 if [ x
$status = x0
]; then
80 echo "$output" | subunit_fail_test
"$name"
82 subunit_pass_test
"$name"
96 # work out the top level source directory
97 if [ -d source4
]; then