From 9719e8421a9e6902c9a4fab25bd4982cde6e4147 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bob=20Dr=C3=B6ge?= Date: Mon, 10 Jun 2024 16:59:21 +0200 Subject: [PATCH] add some more sanity check commands (for the Python and Perl scripts) --- .../v/Valgrind/Valgrind-3.23.0-gompi-2023b.eb | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/easybuild/easyconfigs/v/Valgrind/Valgrind-3.23.0-gompi-2023b.eb b/easybuild/easyconfigs/v/Valgrind/Valgrind-3.23.0-gompi-2023b.eb index e46eb0a14ac..c0874657c57 100644 --- a/easybuild/easyconfigs/v/Valgrind/Valgrind-3.23.0-gompi-2023b.eb +++ b/easybuild/easyconfigs/v/Valgrind/Valgrind-3.23.0-gompi-2023b.eb @@ -16,6 +16,11 @@ source_urls = [ sources = [SOURCELOWER_TAR_BZ2] checksums = ['c5c34a3380457b9b75606df890102e7df2c702b9420c2ebef9540f8b5d56264d'] +dependencies = [ + ('Perl', '5.38.0'), + ('Python', '3.11.5'), +] + configopts = ' --with-mpicc="$MPICC"' local_binaries = [ @@ -31,7 +36,11 @@ sanity_check_paths = { } sanity_check_commands = [ + 'callgrind_annotate --version 2>&1 | grep "%(version)s"', + 'cg_annotate --help', + 'ms_print --version 2>&1 | grep "%(version)s"', 'valgrind --help', + 'vgdb --help', ] moduleclass = 'debugger'