]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Filter out glibc warning messages about unexpected futex results in tests.
authorMark Wielaard <mark@klomp.org>
Fri, 18 Sep 2015 09:15:15 +0000 (09:15 +0000)
committerMark Wielaard <mark@klomp.org>
Fri, 18 Sep 2015 09:15:15 +0000 (09:15 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@15654

tests/filter_libc

index 5d8e0ac9becbc02eaa6c3c6eb54056fd57a92e41..9a508b0bc1c6c9d529dfbf99b87374d09a997fa3 100755 (executable)
@@ -36,6 +36,9 @@ while (<>)
     s/(at.*)__builtin_vec_delete/$1...operator delete[].../;
     s/(at.*)operator delete\[\]\(void\*\)/$1...operator delete[].../;
 
+    # Some glibc versions complain about unexpected futex syscall errors.
+    s/The futex facility returned an unexpected error code.//;
+
     print;
 }