summaryrefslogtreecommitdiff
path: root/selftest/format-subunit.pl
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2009-06-12 14:21:15 +0200
committerJelmer Vernooij <jelmer@samba.org>2009-06-12 14:21:15 +0200
commit13e1654c4a1f8cf2ec38d4d56ae79790b7926c62 (patch)
tree97bed9072b50026d2c8405f212e2a68829c86934 /selftest/format-subunit.pl
parent8c10fb7f004bfaa0318e347893847203c1bee9ea (diff)
downloadsamba-13e1654c4a1f8cf2ec38d4d56ae79790b7926c62.tar.gz
samba-13e1654c4a1f8cf2ec38d4d56ae79790b7926c62.tar.bz2
samba-13e1654c4a1f8cf2ec38d4d56ae79790b7926c62.zip
selftest: Remove existing buildfarm output format.
Diffstat (limited to 'selftest/format-subunit.pl')
-rwxr-xr-xselftest/format-subunit.pl12
1 files changed, 2 insertions, 10 deletions
diff --git a/selftest/format-subunit.pl b/selftest/format-subunit.pl
index 629d02a055..9d4e0c0785 100755
--- a/selftest/format-subunit.pl
+++ b/selftest/format-subunit.pl
@@ -23,7 +23,7 @@ Show errors as soon as they happen rather than at the end of the test run.
=item I<--format>=FORMAT
-Choose the format to print. Currently supported are plain, html or buildfarm.
+Choose the format to print. Currently supported are plain or html.
=head1 LICENSE
@@ -57,11 +57,6 @@ my $result = GetOptions (
exit(1) if (not $result);
-if (defined($ENV{RUN_FROM_BUILD_FARM}) and
- ($ENV{RUN_FROM_BUILD_FARM} eq "yes")) {
- $opt_format = "buildfarm";
-}
-
my $msg_ops;
my $statistics = {
@@ -75,10 +70,7 @@ my $statistics = {
TESTS_SKIP => 0,
};
-if ($opt_format eq "buildfarm") {
- require output::buildfarm;
- $msg_ops = new output::buildfarm($statistics);
-} elsif ($opt_format eq "plain") {
+if ($opt_format eq "plain") {
require output::plain;
$msg_ops = new output::plain("$opt_prefix/summary", $opt_verbose, $opt_immediate, $statistics, undef);
} elsif ($opt_format eq "html") {