X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/611d822b02f836d7abe031cced6adc4281ef4356..25c2fc2c97dacf157c9608e4291d744f28f200ca:/tools/cmake/scripts/my_valgrind.pl diff --git a/tools/cmake/scripts/my_valgrind.pl b/tools/cmake/scripts/my_valgrind.pl index cdaac86813..36815c75b6 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-2022. 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. @@ -14,7 +14,7 @@ my $count = 0; while (defined(my $arg = shift)) { # print "arg($count)$arg\n"; if ($arg =~ m!/smpirun$!) { - @argv = ( $arg, "-wrapper", "@argv" ); + @argv = ( $arg, "-keep-temps", "-quiet", "-wrapper", "@argv" ); } elsif ($arg eq "--cd") { $arg = shift; print "cd $arg\n"; @@ -30,4 +30,4 @@ while (defined(my $arg = shift)) { # map { print "$_ " } @argv; # print "\n"; -system @argv; +exec @argv;