|
From: <sv...@va...> - 2015-09-18 09:15:23
|
Author: mjw
Date: Fri Sep 18 10:15:15 2015
New Revision: 15654
Log:
Filter out glibc warning messages about unexpected futex results in tests.
Modified:
trunk/tests/filter_libc
Modified: trunk/tests/filter_libc
==============================================================================
--- trunk/tests/filter_libc (original)
+++ trunk/tests/filter_libc Fri Sep 18 10:15:15 2015
@@ -36,6 +36,9 @@
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;
}
|