summaryrefslogtreecommitdiff
path: root/selftest/selftest.pl
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2009-06-05 13:16:46 +0200
committerJelmer Vernooij <jelmer@samba.org>2009-06-11 19:59:58 +0200
commit4308e69084c3455072a4e256c84bf3b2b013f31e (patch)
tree4d98adee84fee5c68282e3ab5d596b401903139a /selftest/selftest.pl
parentc278ee50eeb59f74b960036803e3288c8b329c72 (diff)
downloadsamba-4308e69084c3455072a4e256c84bf3b2b013f31e.tar.gz
samba-4308e69084c3455072a4e256c84bf3b2b013f31e.tar.bz2
samba-4308e69084c3455072a4e256c84bf3b2b013f31e.zip
selftest: Fix subunit stream to include the right prefixes rather than
extending the subunit protocol.
Diffstat (limited to 'selftest/selftest.pl')
-rwxr-xr-xselftest/selftest.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/selftest/selftest.pl b/selftest/selftest.pl
index 38ea0df39b..2387904b7a 100755
--- a/selftest/selftest.pl
+++ b/selftest/selftest.pl
@@ -220,7 +220,7 @@ sub run_testsuite($$$$$)
Subunit::prefix($name);
Subunit::start_test($name);
- my $ret = system("$cmd 2>&1");
+ my $ret = system("$cmd | $RealBin/filter-subunit.pl --prefix \"$name.\" 2>&1");
if ($ret == -1) {
Subunit::end_test($name, "error", "Unable to run $cmd: $!");
return 0;