summaryrefslogtreecommitdiff
path: root/selftest/Subunit
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2010-09-14 00:04:54 +0200
committerJelmer Vernooij <jelmer@samba.org>2010-09-14 10:54:28 +0200
commit7d4968e161d5868b65dd5d8ef5bb0e391109c0b5 (patch)
tree37950f65458954edf35f0c7745b0f78c354183e9 /selftest/Subunit
parentd3960f6b406272cc37820fad04aed6ddfd4e6cce (diff)
downloadsamba-7d4968e161d5868b65dd5d8ef5bb0e391109c0b5.tar.gz
samba-7d4968e161d5868b65dd5d8ef5bb0e391109c0b5.tar.bz2
samba-7d4968e161d5868b65dd5d8ef5bb0e391109c0b5.zip
selftest: Remove testsuite parsing.
Diffstat (limited to 'selftest/Subunit')
-rw-r--r--selftest/Subunit/Filter.pm22
1 files changed, 2 insertions, 20 deletions
diff --git a/selftest/Subunit/Filter.pm b/selftest/Subunit/Filter.pm
index 1c48426995..5ac304f1ee 100644
--- a/selftest/Subunit/Filter.pm
+++ b/selftest/Subunit/Filter.pm
@@ -29,9 +29,9 @@ sub start_test($$)
Subunit::start_test($testname);
}
-sub end_test($$$$$)
+sub end_test($$$$)
{
- my ($self, $testname, $result, $unexpected, $reason) = @_;
+ my ($self, $testname, $result, $reason) = @_;
if (defined($self->{prefix})) {
$testname = $self->{prefix}.$testname;
@@ -40,24 +40,6 @@ sub end_test($$$$$)
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) = @_;