|
From: <sv...@va...> - 2011-10-03 00:23:51
|
Author: florian
Date: 2011-10-03 01:19:05 +0100 (Mon, 03 Oct 2011)
New Revision: 12085
Log:
Also parse stdoutB_filter_args and stderrB_filter_args.
Forgot to do that in r12045.
Modified:
trunk/tests/vg_regtest.in
Modified: trunk/tests/vg_regtest.in
===================================================================
--- trunk/tests/vg_regtest.in 2011-10-02 12:12:38 UTC (rev 12084)
+++ trunk/tests/vg_regtest.in 2011-10-03 00:19:05 UTC (rev 12085)
@@ -282,6 +282,10 @@
$stdoutB_filter = validate_program(".", $1, 1, 1);
} elsif ($line =~ /^\s*stderrB_filter:\s*(.*)$/) {
$stderrB_filter = validate_program(".", $1, 1, 1);
+ } elsif ($line =~ /^\s*stdoutB_filter_args:\s*(.*)$/) {
+ $stdoutB_filter_args = $1;
+ } elsif ($line =~ /^\s*stderrB_filter_args:\s*(.*)$/) {
+ $stderrB_filter_args = $1;
} elsif ($line =~ /^\s*prereq:\s*(.*)$/) {
$prereq = $1;
} elsif ($line =~ /^\s*post:\s*(.*)$/) {
|