|
From: Mark W. <ma...@so...> - 2021-11-11 17:04:00
|
https://sourceware.org/git/gitweb.cgi?p=valgrind.git;h=d151907e5d8ff393f4fef126c8ae445ea8813661 commit d151907e5d8ff393f4fef126c8ae445ea8813661 Author: Mark Wielaard <ma...@kl...> Date: Thu Nov 11 18:02:09 2021 +0100 Add demangle-rust to check_PROGRAMS The demangle-rust.vgtest would fail because the demangle-rust binary wasn't build by default. Add it to check_PROGRAMS and define demangle_rust_SOURCES to make sure it is always build. Diff: --- memcheck/tests/Makefile.am | 2 ++ 1 file changed, 2 insertions(+) diff --git a/memcheck/tests/Makefile.am b/memcheck/tests/Makefile.am index 7837d87c71..449710020a 100644 --- a/memcheck/tests/Makefile.am +++ b/memcheck/tests/Makefile.am @@ -392,6 +392,7 @@ check_PROGRAMS = \ custom_alloc \ custom-overlap \ demangle \ + demangle-rust \ big_debuginfo_symbol \ deep-backtrace \ describe-block \ @@ -505,6 +506,7 @@ endif leak_cpp_interior_SOURCES = leak_cpp_interior.cpp demangle_SOURCES = demangle.cpp +demangle_rust_SOURCES = demangle-rust.c # Suppress various gcc warnings which are correct, but for things # we are actually testing for at runtime. |