From: Florian Krohm Date: Mon, 3 Oct 2011 00:19:05 +0000 (+0000) Subject: Also parse stdoutB_filter_args and stderrB_filter_args. X-Git-Tag: svn/VALGRIND_3_7_0~152 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a84d8c766f9b57c8689223c4eb00357a68fa1d6c;p=thirdparty%2Fvalgrind.git Also parse stdoutB_filter_args and stderrB_filter_args. Forgot to do that in r12045. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@12085 --- diff --git a/tests/vg_regtest.in b/tests/vg_regtest.in index 4e334a923c..3a08349a27 100755 --- a/tests/vg_regtest.in +++ b/tests/vg_regtest.in @@ -282,6 +282,10 @@ sub read_vgtest_file($) $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*(.*)$/) {