summaryrefslogtreecommitdiff
path: root/selftest/Subunit/Filter.pm
blob: e2b9d1c9ad628358c76cbbaf7949189cef424905 (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
#!/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 start_test($$)
{
	my ($self, $testname) = @_;

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

	Subunit::start_test($testname);
}

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

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

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

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

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

1;