375230e95f
- Enable full regtest on all fedora arches. - Make sure that patched a.c is not newer than cgout-test. - Update valgrind-3.15.0-gdb-output1.patch to upstream version. - Add valgrind-3.15.0-filter-libc-futex.patch. - Add valgrind-3.15.0-mmap-32bit.patch.
14 lines
513 B
Diff
14 lines
513 B
Diff
diff --git a/tests/filter_libc b/tests/filter_libc
|
|
index 9607db5..8eb9911 100755
|
|
--- a/tests/filter_libc
|
|
+++ b/tests/filter_libc
|
|
@@ -37,6 +37,8 @@ while (<>)
|
|
s/(at.*)operator delete\[\]\(void\*\)/$1...operator delete[].../;
|
|
|
|
# Some glibc versions complain about unexpected futex syscall errors.
|
|
+ # With or without newline (see sourceware PR20271).
|
|
+ next if /^The futex facility returned an unexpected error code.$/;
|
|
s/The futex facility returned an unexpected error code.//;
|
|
|
|
print;
|