From c48f60a5d9576736d86d1ef381c3e18ce7bab9ea Mon Sep 17 00:00:00 2001 From: Christoph Reiter Date: Tue, 17 Apr 2018 15:35:44 +0200 Subject: tests: add our own valgrind suppression file Contains the two condition errors which happen with Python 3.6.5 at interpreter startup. --- setup.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 7da106ba..0326569f 100755 --- a/setup.py +++ b/setup.py @@ -651,6 +651,8 @@ def get_suppression_files(): files = [] for prefix in prefixes: files.extend(get_suppression_files_for_prefix(prefix)) + + files.append(os.path.join(get_script_dir(), "tests", "valgrind.supp")) return sorted(set(files)) -- cgit v1.2.1