From e1a58f3d5b44d4d8b8d0239481eee52c7a9b69fd Mon Sep 17 00:00:00 2001 From: Nikolai Kondrashov Date: Thu, 4 Sep 2014 17:09:31 +0300 Subject: CI: Don't run dlopen-tests under Valgrind MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Disable running dlopen-tests under Valgrind as their use of dlclose makes Valgrind drop symbols and produce meaningless backtraces, which cannot be matched with specific suppressions. Reviewed-by: Lukáš Slebodník --- contrib/ci/run | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/contrib/ci/run b/contrib/ci/run index 9864818c6..f5f84c448 100755 --- a/contrib/ci/run +++ b/contrib/ci/run @@ -202,7 +202,8 @@ function build_debug() stage make-check-valgrind \ make-check-wrap -j $CPU_NUM check -- \ libtool --mode=execute \ - valgrind-condense 99 '!(*.py)' -- \ + valgrind-condense 99 \ + '!(*.py|*dlopen-tests)' -- \ --vgdb=no \ --trace-children=yes \ --trace-children-skip='*/bin/*,*/sbin/*' \ -- cgit