summaryrefslogtreecommitdiff
path: root/selftest/format-subunit.pl
diff options
context:
space:
mode:
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") {