Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Well the last rogue call to RemoteProcess::actors() was easy actually
[simgrid.git] / tools / cmake / scripts / my_valgrind.pl
index 107ffd45b9fe7be39774ec55c897a0de6d2422e3..be6180b147a49bc09e7cca2482bd732349f1451e 100755 (executable)
@@ -1,6 +1,6 @@
 #!/usr/bin/env perl
 
-# Copyright (c) 2012-2020. 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.
@@ -8,13 +8,13 @@
 use strict;
 use warnings;
 
-my @argv = ("valgrind");
+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";