summaryrefslogtreecommitdiff
path: root/selftest/Subunit/Filter.pm
blob: 1c484269950c13eefc6953991dc3afd694a42006 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#!/usr/bin/perl
# Filter a subunit stream
# Copyright (C) Jelmer Vernooij <jelmer@samba.org>
# Published under the GNU GPL, v3 or later

package Subunit::Filter;

use strict;

sub control_msg()
{
	# We regenerate control messages, so ignore this
}

sub output_msg($$)
{
	my ($self, $msg) = @_;
	print $msg;
}

sub start_test($$)
{
	my ($self, $testname) = @_;

	if (defined($self->{prefix})) {
		$testname = $self->{prefix}.$testname;
	}

	Subunit::start_test($testname);
}

sub end_test($$$$$)
{
	my ($self, $testname, $result, $unexpected, $reason) = @_;

	if (defined($self->{prefix})) {
		$testname = $self->{prefix}.$testname;
	}

	Subunit::end_test($testname, $result, $reason);
}

sub skip_testsuite($;$)
{
	my ($self, $name, $reason) = @_;
	Subunit::skip_testsuite($name, $reason);
}

sub start_testsuite($;$)
{
	my ($self, $name) = @_;
	Subunit::start_testsuite($name);
}

sub end_testsuite($$;$)
{
	my ($self, $name, $result, $reason) = @_;
	Subunit::end_testsuite($name, $result, $reason);
}

sub new {
	my ($class, $prefix) = @_;

	my $self = {
		prefix => $prefix,
	};
	bless($self, $class);
}

1;