X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/29a3b2869c0075fc75e8ccc66fc1d9c4c8bf6a85..8d62bb541920e2e4e0f7d1fa26a7f6eec79370c2:/tools/cmake/scripts/my_valgrind.pl?ds=sidebyside diff --git a/tools/cmake/scripts/my_valgrind.pl b/tools/cmake/scripts/my_valgrind.pl index f2ccce7101..d2ec57b312 100755 --- a/tools/cmake/scripts/my_valgrind.pl +++ b/tools/cmake/scripts/my_valgrind.pl @@ -1,6 +1,6 @@ #!/usr/bin/env perl -# Copyright (c) 2012-2018. The SimGrid Team. All rights reserved. +# Copyright (c) 2012-2023. The SimGrid Team. All rights reserved. # This program is free software; you can redistribute it and/or modify it # under the terms of the license (GNU LGPL) which comes with this package. @@ -8,13 +8,14 @@ use strict; use warnings; -my @argv = ("valgrind"); +# Many other parameters (such as trace-children) are set in Tests.cmake +my @argv = ("valgrind", "--quiet"); my $count = 0; while (defined(my $arg = shift)) { # print "arg($count)$arg\n"; if ($arg =~ m!/smpirun$!) { - @argv = ( $arg, "-keep-temps", "-wrapper", "@argv" ); + @argv = ( $arg, "-keep-temps", "-quiet", "-wrapper", "@argv" ); } elsif ($arg eq "--cd") { $arg = shift; print "cd $arg\n"; @@ -30,4 +31,4 @@ while (defined(my $arg = shift)) { # map { print "$_ " } @argv; # print "\n"; -system @argv; +exec @argv;