From 1fdee300704e9c3dfad1d38f95f66522f83deb1b Mon Sep 17 00:00:00 2001 From: Martin Quinson Date: Sun, 14 May 2017 11:27:50 +0200 Subject: [PATCH 1/1] tesh: ignore modern systems complaining about the lack of UTF --- tools/tesh/tesh.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/tesh/tesh.py b/tools/tesh/tesh.py index 985cadc430..70947d3204 100755 --- a/tools/tesh/tesh.py +++ b/tools/tesh/tesh.py @@ -442,6 +442,8 @@ if __name__ == '__main__': re.compile("==WARNING: ASan is ignoring requested __asan_handle_no_return: stack top:"), re.compile("False positive error reports may follow"), re.compile("For details see http://code.google.com/p/address-sanitizer/issues/detail?id=189"), + + re.compile("Python runtime initialized with LC_CTYPE=C .*"), ] TeshState().jenkins = True # This is a Jenkins build -- 2.20.1