|
From: Dirk M. <mu...@kd...> - 2003-11-19 00:56:02
|
CVS commit by mueller:
only say something if there is something to say
M +1 -3 vg_regtest.in 1.16
--- valgrind/tests/vg_regtest.in #1.15:1.16
@@ -275,5 +275,5 @@
# ignore dirs into which we should not recurse
- if ($dir =~ /^(BitKeeper|CVS|SCCS|docs|doc)$/) { return; }
+ if ($dir =~ /^(BitKeeper|CVS|SCCS|docs|doc)$/) { return; }
chdir($dir) or die "Could not change into $dir\n";
@@ -289,6 +289,4 @@
if ($found_tests) {
print "-- Running tests in $full_dir $dashes\n";
- } else {
- print "-- Found no tests in $full_dir $dashes\n";
}
foreach my $f (@fs) {
|
|
From: Nicholas N. <nj...@ca...> - 2003-12-04 16:16:00
|
CVS commit by nethercote:
Fix yet more "make dist" borkage
M +1 -0 Makefile.am 1.34
--- valgrind/tests/Makefile.am #1.33:1.34
@@ -6,4 +6,5 @@
filter_addresses \
filter_discards \
+ filter_numbers \
filter_stderr_basic \
filter_test_paths
|
|
From: Dirk M. <mu...@kd...> - 2004-01-03 15:03:28
|
CVS commit by mueller:
portability
M +1 -1 filter_addresses 1.3
M +6 -6 filter_stderr_basic 1.13
--- valgrind/tests/filter_addresses #1.2:1.3
@@ -1,4 +1,4 @@
#! /bin/sh
-sed "s/0x[0-9A-Fa-f]\+/0x......../g"
+sed "s/0x[0-9A-Fa-f]*/0x......../g"
--- valgrind/tests/filter_stderr_basic #1.12:1.13
@@ -5,5 +5,5 @@
# Remove ==pid== and --pid-- and ++pid++ and **pid** strings
-sed "s/\(==\|--\|\+\+\|\*\*\)[0-9]\{1,5\}\1 //" |
+sed -E "s/(==|--|\+\+|\*\*)[0-9]{1,5}(==|--|\+\+|\*\*) //" |
# Remove "<name>, a <description> for x86-linux." line and the following
@@ -12,18 +12,18 @@
# Remove other introductory lines
-sed "/Estimated CPU clock rate is [0-9]\+ MHz/d" |
+sed "/Estimated CPU clock rate is [0-9]* MHz/d" |
sed "/For more details, rerun with: -v/d" |
# Anonymise line numbers in vg_replace_malloc.c
-sed "s/vg_replace_malloc.c:[0-9]\+/vg_replace_malloc.c:.../" |
+sed "s/vg_replace_malloc.c:[0-9]*/vg_replace_malloc.c:.../" |
# Anonymise vg_intercept lines
-sed "s/vg_intercept.c:[0-9]\+/vg_intercept.c:.../" |
+sed "s/vg_intercept.c:[0-9]*/vg_intercept.c:.../" |
# Anonymise vg_libpthread lines
-sed "s/vg_libpthread.c:[0-9]\+/vg_libpthread.c:.../" |
+sed "s/vg_libpthread.c:[0-9]*/vg_libpthread.c:.../" |
# Hide suppressed error counts
-sed "s/^\(ERROR SUMMARY[^(]*(suppressed: \)[0-9]\+\( from \)[0-9]\+)$/\10\20)/" |
+sed "s/^\(ERROR SUMMARY[^(]*(suppressed: \)[0-9]*\( from \)[0-9]*)$/\10\20)/" |
|
|
From: Jeremy F. <je...@go...> - 2004-01-05 01:02:48
|
CVS commit by fitzhardinge:
Debork regtests
M +1 -1 filter_stderr_basic 1.14
--- valgrind/tests/filter_stderr_basic #1.13:1.14
@@ -5,5 +5,5 @@
# Remove ==pid== and --pid-- and ++pid++ and **pid** strings
-sed -E "s/(==|--|\+\+|\*\*)[0-9]{1,5}(==|--|\+\+|\*\*) //" |
+sed "s/\(==\|--\|\+\+\|\*\*\)[0-9]\{1,5\}\1 //" |
# Remove "<name>, a <description> for x86-linux." line and the following
|
|
From: Doug R. <df...@nl...> - 2004-01-05 10:16:18
|
On Mon, 2004-01-05 at 01:02, Jeremy Fitzhardinge wrote: > CVS commit by fitzhardinge: > > Debork regtests The '\1' reference will not work on FreeBSD. To quote the manpage: Back references are a dreadful botch, posing major problems for efficient implementations. They are also somewhat vaguely defined (does `a\(\(b\)*\2\)*d' match `abbbd'?). Avoid using them. |
|
From: Jeremy F. <je...@go...> - 2004-01-05 10:33:50
|
On Mon, 2004-01-05 at 02:15, Doug Rabson wrote: > On Mon, 2004-01-05 at 01:02, Jeremy Fitzhardinge wrote: > > CVS commit by fitzhardinge: > > > > Debork regtests > > The '\1' reference will not work on FreeBSD. To quote the manpage: > > Back references are a dreadful botch, posing major problems for > efficient implementations. They are also somewhat vaguely > defined (does `a\(\(b\)*\2\)*d' match `abbbd'?). Avoid using > them. Yep, and -E doesn't work with gnu sed - we need to fix it properly somehow, but in the meantime we should not break the current tests. Perhaps we should use perl, since it will be consistent across platforms? J |
|
From: Doug R. <df...@nl...> - 2004-01-05 11:38:15
|
On Mon, 2004-01-05 at 10:33, Jeremy Fitzhardinge wrote: > On Mon, 2004-01-05 at 02:15, Doug Rabson wrote: > > On Mon, 2004-01-05 at 01:02, Jeremy Fitzhardinge wrote: > > > CVS commit by fitzhardinge: > > > > > > Debork regtests > > > > The '\1' reference will not work on FreeBSD. To quote the manpage: > > > > Back references are a dreadful botch, posing major problems for > > efficient implementations. They are also somewhat vaguely > > defined (does `a\(\(b\)*\2\)*d' match `abbbd'?). Avoid using > > them. > > Yep, and -E doesn't work with gnu sed - we need to fix it properly > somehow, but in the meantime we should not break the current tests. > Perhaps we should use perl, since it will be consistent across > platforms? I think the key problem was the use of '\1' but I didn't realise that until I started messing around with -E (which selects an alternative regexp expression syntax). It should be possible to come up with something that works on both versions of sed. |
|
From: Nicholas N. <nj...@ca...> - 2004-01-05 12:46:00
|
On Mon, 5 Jan 2004, Doug Rabson wrote:
> I think the key problem was the use of '\1' but I didn't realise that
> until I started messing around with -E (which selects an alternative
> regexp expression syntax). It should be possible to come up with
> something that works on both versions of sed.
How about this?
sed "s/\(==\|--\|\+\+\|\*\*\)[0-9]\{1,5\}\(==\|--\|\+\+\|\*\*\) //" |
While we're at it, can these lines be removed:
# Reduce some libc incompatibility
sed "s/ __getsockname / getsockname /" |
sed "s/ __sigaction / sigaction /" |
sed "s/ __GI___/ __/"
now that Jeremy did the name canonicalisation?
N
|
|
From: Doug R. <df...@nl...> - 2004-01-05 13:44:01
|
On Mon, 2004-01-05 at 12:45, Nicholas Nethercote wrote:
> On Mon, 5 Jan 2004, Doug Rabson wrote:
>
> > I think the key problem was the use of '\1' but I didn't realise that
> > until I started messing around with -E (which selects an alternative
> > regexp expression syntax). It should be possible to come up with
> > something that works on both versions of sed.
>
> How about this?
>
> sed "s/\(==\|--\|\+\+\|\*\*\)[0-9]\{1,5\}\(==\|--\|\+\+\|\*\*\) //" |
I'll try that this evening on FreeBSD.
|
|
From: Jeremy F. <je...@go...> - 2004-01-05 16:59:46
|
On Mon, 2004-01-05 at 03:37, Doug Rabson wrote: > I think the key problem was the use of '\1' but I didn't realise that > until I started messing around with -E (which selects an alternative > regexp expression syntax). It should be possible to come up with > something that works on both versions of sed. Well, both versions of sed support a more complete regex syntax than normal sed, but they seem to do it incompatibly. GNU sed uses a lot more \'s, and BSD sed uses -E. We could just weaken the regexps until they're representable in standard sed regex syntax, but that seems like giving up. J |
|
From: Doug R. <df...@nl...> - 2004-01-05 20:12:03
|
On Mon, 2004-01-05 at 16:59, Jeremy Fitzhardinge wrote:
> On Mon, 2004-01-05 at 03:37, Doug Rabson wrote:
> > I think the key problem was the use of '\1' but I didn't realise that
> > until I started messing around with -E (which selects an alternative
> > regexp expression syntax). It should be possible to come up with
> > something that works on both versions of sed.
>
> Well, both versions of sed support a more complete regex syntax than
> normal sed, but they seem to do it incompatibly. GNU sed uses a lot
> more \'s, and BSD sed uses -E. We could just weaken the regexps until
> they're representable in standard sed regex syntax, but that seems like
> giving up.
The closest I can come to a regexp which works in BSD sed using the
"obsolete" regexp syntax is:
sed "s/[=-\+\*]\{2,2\}[0-9]\{1,5\}[=-\+\*]\{2,2\} //"
The main problem is that '\|' (e.g. '\(a\|b\)') isn't supported in the
obsolete syntax. It is supported in extended syntax but without as many
backslashes, (e.g. '(a|b)'). How wretched - maybe it would be better to
use perl after all.
|
|
From: Nicholas N. <nj...@ca...> - 2004-02-29 01:34:37
|
CVS commit by nethercote:
Allow multiple .exp files, eg. foo.stderr.exp, foo.stderr.exp2; test will pass
as long as one matches.
M +48 -25 vg_regtest.in 1.19
--- valgrind/tests/vg_regtest.in #1.18:1.19
@@ -55,10 +55,10 @@
# always change, eg. process id numbers.
#
-# Expected stdout (filtered) is kept in <test>.stdout.exp. It can be missing
-# if it would be empty. Expected stderr (filtered) is kept in
-# <test>.stderr.exp.
+# Expected stdout (filtered) is kept in <test>.stdout.exp[0-9]? (can be more
+# than one expected output). It can be missing if it would be empty. Expected
+# stderr (filtered) is kept in <test>.stderr.exp[0-9]?.
#
# If results don't match, the output can be found in <test>.std<strm>.out,
-# and the diff between expected and actual in <test>.std<strm>.diff.
+# and the diff between expected and actual in <test>.std<strm>.diff[0-9]?.
#
# Notes on adding regression tests for a new tool are in
@@ -218,4 +218,37 @@
}
+# Compare output against expected output; it should match at least one of
+# them.
+sub do_diffs($$$$)
+{
+ my ($fullname, $name, $mid, $f_exps) = @_;
+
+ for my $f_exp (@$f_exps) {
+ (-r $f_exp) or die "Could not read `$f_exp'\n";
+
+ my $n = "";
+ if ($f_exp =~ /.*\.exp(\d?)/) {
+ $n = $1;
+ } else {
+ $n = "";
+ ($f_exp eq "/dev/null") or die "Unexpected .exp file: $f_exp\n";
+ }
+
+ #print("diff -C0 $f_exp $name.$mid.out > $name.$mid.diff$n\n");
+ mysystem("diff -C0 $f_exp $name.$mid.out > $name.$mid.diff$n");
+
+ if (not -s "$name.$mid.diff$n") {
+ # A match; remove .out and any previously created .diff files.
+ unlink("$name.$mid.out");
+ unlink(<$name.$mid.diff*>);
+ return;
+ }
+ }
+ # If we reach here, none of the .exp files matched.
+ print "*** $name failed ($mid) ***\n";
+ push(@failures, sprintf("%-40s ($mid)", "$fullname"));
+ $num_failures{$mid}++;
+}
+
sub do_one_test($$)
{
@@ -246,25 +279,15 @@
rename($tmp, "$name.stderr.out");
- # If stdout expected empty, .exp file might be missing so diff with
- # /dev/null
- my $stdout_exp = ( -r "$name.stdout.exp"
- ? "$name.stdout.exp"
- : "/dev/null" );
-
- my $stderr_exp = "$name.stderr.exp";
- (-r $stderr_exp) or die "Could not read `$stderr_exp'\n";
-
- mysystem("diff -C0 $stdout_exp $name.stdout.out > $name.stdout.diff");
- mysystem("diff -C0 $stderr_exp $name.stderr.out > $name.stderr.diff");
-
- for my $ext ("stdout", "stderr") {
- if (-s "$name.$ext.diff") {
- print "*** $name failed ($ext) ***\n";
- push(@failures, sprintf("%-40s ($ext)", "$fullname"));
- $num_failures{$ext}++;
- } else {
- unlink("$name.$ext.out", "$name.$ext.diff");
- }
- }
+
+ # Find all the .stdout.exp files. If none, use /dev/null.
+ my @stdout_exps = <$name.stdout.exp*>;
+ @stdout_exps = ( "/dev/null" ) if (0 == scalar @stdout_exps);
+
+ # Find all the .stderr.exp files. $name.stderr.exp must exist.
+ my @stderr_exps = <$name.stderr.exp*>;
+ (-r "$name.stderr.exp") or die "Could not read `$name.stderr.exp'\n";
+
+ do_diffs($fullname, $name, "stdout", \@stdout_exps);
+ do_diffs($fullname, $name, "stderr", \@stderr_exps);
$num_tests_done++;
}
|
|
From: Tom H. <th...@cy...> - 2004-02-29 13:04:04
|
CVS commit by thughes: Modified the basic standard error filter to strip out line info out of order warnings which some systems seem to produce. M +4 -1 filter_stderr_basic 1.16 --- valgrind/tests/filter_stderr_basic #1.15:1.16 @@ -31,3 +31,6 @@ sed "s/ __getsockname / getsockname /" | sed "s/ __sigaction / sigaction /" | -sed "s/ __GI___/ __/" +sed "s/ __GI___/ __/" | + +# Remove line info out of order warnings +sed "/warning: line info addresses out of order/d" |
|
From: Nicholas N. <nj...@ca...> - 2004-03-01 08:31:51
|
CVS commit by nethercote:
Make vg_regtest return 1 if any tests fail. Useful for scripts that call it.
M +6 -0 vg_regtest.in 1.20
--- valgrind/tests/vg_regtest.in #1.19:1.20
@@ -385,4 +385,10 @@
summarise_results();
+if (0 == $num_failures{"stdout"} && 0 == $num_failures{"stderr"}) {
+ exit 0;
+} else {
+ exit 1;
+}
+
##--------------------------------------------------------------------##
##--- end vg_regtest ---##
|
|
From: Tom H. <th...@cy...> - 2004-03-22 19:57:45
|
CVS commit by thughes: Strip _nocancel from glibc stack traces so that __open_nocancel etc look like open as seen in traces from older glibcs. M +1 -0 filter_stderr_basic 1.18 --- valgrind/tests/filter_stderr_basic #1.17:1.18 @@ -32,4 +32,5 @@ sed "s/ __sigaction / sigaction /" | sed "s/ __GI___/ __/" | +sed "s/ __\([a-z]*\)_nocancel / \1 /" | # Remove line info out of order warnings |
|
From: Nicholas N. <nj...@ca...> - 2004-10-19 16:56:50
|
CVS commit by nethercote:
Arch-abstraction:
- Change regtest script to print a message if a test is skipped due to the cpu
being of the wrong type.
M +4 -3 vg_regtest.in 1.23
--- valgrind/tests/vg_regtest.in #1.22:1.23
@@ -92,6 +92,4 @@
# Default valgrind to use is this build tree's (uninstalled) one
-my $prefix="@prefix@";
-my $exec_prefix="@exec_prefix@";
my $valgrind = "./coregrind/valgrind";
@@ -267,5 +265,8 @@
if (defined $cpu_test) {
- return unless system("../../tests/cputest $cpu_test") == 0;
+ if (system("$tests_dir/tests/cputest $cpu_test") != 0) {
+ printf("%-16s (cpu_test failed, skipping)\n", "$name:");
+ return;
+ }
}
|
|
From: Nicholas N. <nj...@ca...> - 2004-11-18 18:22:02
|
CVS commit by nethercote:
Arch-abstraction:
- Added a hacky mechanism which prevents the regtest script from entering
directories for other architectures. (Eg. when running on x86/, it won't enter
a ppc/ subdir.)
M +36 -12 cputest.c 1.6
M +7 -1 vg_regtest.in 1.26
--- valgrind/tests/cputest.c #1.5:1.6
@@ -3,5 +3,22 @@
#include <string.h>
-// We return 0 if the machine matches the asked-for cpu, 1 otherwise.
+// We return:
+// - 0 if the machine matches the asked-for cpu
+// - 1 if it didn't match, but did match the name of another arch
+// - 2 otherwise
+
+// When updating this file for a new architecture, add the name to
+// 'all_archs' as well as adding go().
+
+#define False 0
+#define True 1
+typedef int Bool;
+
+char* all_archs[] = {
+ "x86",
+ "ppc",
+ "amd64",
+ NULL
+};
#ifdef __x86__
@@ -17,10 +34,10 @@ static __inline__ void cpuid(unsigned in
}
-static int go(char* cpu)
+static Bool go(char* cpu)
{
unsigned int level = 0, mask = 0, a, b, c, d;
if ( strcmp( cpu, "x86" ) == 0 ) {
- return 0;
+ return True;
} else if ( strcmp( cpu, "x86-fpu" ) == 0 ) {
level = 1;
@@ -42,5 +59,5 @@ static int go(char* cpu)
mask = 1 << 26;
} else {
- return 1;
+ return False;
}
@@ -50,7 +67,7 @@ static int go(char* cpu)
cpuid( level, &a, &b, &c, &d );
- if ( ( d & mask ) != 0 ) return 0;
+ if ( ( d & mask ) != 0 ) return True;
}
- return 1;
+ return False;
}
#endif // __x86__
@@ -58,10 +75,10 @@ static int go(char* cpu)
#ifdef __ppc__
-static int go(char* cpu)
+static Bool go(char* cpu)
{
if ( strcmp( cpu, "ppc" ) == 0 )
- return 0;
+ return True;
else
- return 1;
+ return False;
}
#endif // __ppc__
@@ -70,8 +86,16 @@ static int go(char* cpu)
int main(int argc, char **argv)
{
+ int i;
if ( argc != 2 ) {
fprintf( stderr, "usage: cputest <cpu-type>\n" );
- exit( 1 );
+ exit( 2 );
}
- return go( argv[1] );
+ if (go( argv[1] )) {
+ return 0; // matched
+ }
+ for (i = 0; NULL != all_archs[i]; i++) {
+ if ( strcmp( argv[1], all_archs[i] ) == 0 )
+ return 1;
+ }
+ return 2;
}
--- valgrind/tests/vg_regtest.in #1.25:1.26
@@ -319,7 +319,13 @@
$dir =~ s/\/$//; # trim a trailing '/'
- # ignore dirs into which we should not recurse
+ # Ignore dirs into which we should not recurse.
if ($dir =~ /^(BitKeeper|CVS|SCCS|docs|doc)$/) { return; }
+ # Ignore any dir whose name matches that of an architecture which is not
+ # the architecture we are running on (eg. when running on x86, ignore ppc/
+ # directories).
+ # Nb: weird Perl-ism -- exit code of '1' is seen by Perl as 256...
+ if (256 == system("$tests_dir/tests/cputest $dir")) { return; }
+
chdir($dir) or die "Could not change into $dir\n";
|
|
From: Jeremy F. <je...@go...> - 2005-01-17 22:33:47
|
CVS commit by fitzhardinge:
Allow .vgtest files to have comments and blank lines.
M +3 -1 vg_regtest.in 1.28
--- valgrind/tests/vg_regtest.in #1.27:1.28
@@ -182,5 +182,7 @@
while (my $line = <INPUTFILE>) {
- if ($line =~ /^\s*vgopts:\s*(.*)$/) {
+ if ($line =~ /^\s*#/ || $line =~ /^\s*$/) {
+ next;
+ } elsif ($line =~ /^\s*vgopts:\s*(.*)$/) {
$vgopts = $1;
} elsif ($line =~ /^\s*prog:\s*(.*)$/) {
|
|
From: Tom H. <th...@cy...> - 2005-01-23 17:10:05
|
CVS commit by thughes:
Link in libarch.a and use VG_(cpuid) for x86 CPU feature tests rather
than trying to use our own inline version which has a habit of failing
to compile on some versions of gcc due to register starvation.
BUG: 96321
M +2 -1 Makefile.am 1.38
M +9 -8 cputest.c 1.7
--- valgrind/tests/Makefile.am #1.37:1.38
@@ -23,5 +23,6 @@
cputest_SOURCES = cputest.c
cputest_CFLAGS = $(AM_CFLAGS) -D__$(VG_ARCH)__
+cputest_DEPENDENCIES = ../coregrind/${VG_ARCH}/libarch.a
+cputest_LDADD = ../coregrind/${VG_ARCH}/libarch.a
toobig_allocs_SOURCES = toobig-allocs.c
true_SOURCES = true.c
-
--- valgrind/tests/cputest.c #1.6:1.7
@@ -23,13 +23,14 @@ char* all_archs[] = {
#ifdef __x86__
-static __inline__ void cpuid(unsigned int n,
+extern void vgPlain_cpuid(unsigned int n,
+ unsigned int *a, unsigned int *b,
+ unsigned int *c, unsigned int *d);
+
+static inline void cpuid(unsigned int n,
unsigned int *a, unsigned int *b,
unsigned int *c, unsigned int *d)
{
- __asm__ __volatile__ (
- "cpuid"
- : "=a" (*a), "=b" (*b), "=c" (*c), "=d" (*d) /* output */
- : "0" (n) /* input */
- );
+ vgPlain_cpuid(n, a, b, c, d);
+ return;
}
|
|
From: Tom H. <th...@cy...> - 2005-02-13 15:47:44
|
CVS commit by thughes:
Supress any source file name for __libc_start_main.
M +2 -4 filter_libc 1.2
--- valgrind/tests/filter_libc #1.1:1.2
@@ -3,5 +3,6 @@
use strict;
-my @libc_symbols = qw(accept execve fcntl getsockname poll readv recvmsg
+my @libc_symbols = qw(__libc_start_main accept execve fcntl
+ getsockname poll readv recvmsg
socket socketpair syscall writev);
@@ -18,7 +19,4 @@
s/\(within \/.*libc.*\)$/(within \/...libc...)/;
-# s/\(\.\.\/sysdeps\/unix\/sysv\/linux\/.*\.c:\d+\)/(in \/...libc...)/;
-# s/__libc_(.*) \(.*\)$/__libc_$1 (...libc...)/;
-
s/($libc_symbols) \([a-z]+\.[cS]:\d+\)$/$1 (in \/...libc...)/;
|
|
From: Tom H. <th...@cy...> - 2005-02-13 15:49:30
|
CVS commit by thughes:
Match a wider range of characters in filenames.
M +1 -1 filter_libc 1.3
--- valgrind/tests/filter_libc #1.2:1.3
@@ -19,5 +19,5 @@
s/\(within \/.*libc.*\)$/(within \/...libc...)/;
- s/($libc_symbols) \([a-z]+\.[cS]:\d+\)$/$1 (in \/...libc...)/;
+ s/($libc_symbols) \(\w+\.[cS]:\d+\)$/$1 (in \/...libc...)/;
print;
|
|
From: Nicholas N. <nj...@cs...> - 2005-02-13 17:50:40
|
CVS commit by nethercote:
Fix old comment.
M +1 -1 vg_regtest.in 1.30
--- valgrind/tests/vg_regtest.in #1.29:1.30
@@ -281,5 +281,5 @@
# Pass the appropriate --tool option for the directory (can be overridden
- # by an "args:" or "args.dev:" line, though).
+ # by an "args:" line, though).
my $tool=determine_tool();
mysystem("VALGRINDLIB=$tests_dir/.in_place $valgrind --command-line-only=yes --tool=$tool $vgopts $prog $args > $name.stdout.out 2> $name.stderr.out");
|
|
From: Jeremy F. <je...@go...> - 2005-02-19 00:18:13
|
CVS commit by fitzhardinge:
Remove now unnecessary --num-callers=4.
M +0 -2 vg_regtest.in 1.31
--- valgrind/tests/vg_regtest.in #1.30:1.31
@@ -276,6 +276,4 @@
}
- # *.exp have been generated assuming this
- $vgopts = '--num-callers=4 '.$vgopts;
printf("%-16s valgrind $vgopts $prog $args\n", "$name:");
|
|
From: Jeremy F. <je...@go...> - 2005-02-21 19:18:17
|
CVS commit by fitzhardinge:
Add missing filter to EXTRA_DIST
M +1 -0 Makefile.am 1.41
--- valgrind/tests/Makefile.am #1.40:1.41
@@ -6,4 +6,5 @@
filter_addresses \
filter_discards \
+ filter_libc \
filter_numbers \
filter_stderr_basic \
|
|
From: Jeremy F. <je...@go...> - 2005-03-03 07:43:57
|
CVS commit by fitzhardinge: Remove filter_sync to re-add with +x R filter_sink 1.1 |