From: Arnaud Giersch Date: Thu, 12 Jun 2014 10:55:10 +0000 (+0200) Subject: In tesh.pl, with "output display", print contents of array, and not a reference to it. X-Git-Tag: v3_12~979 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/fd6a14eb0cad3b4c941b97948ce16602bf360b31?ds=inline In tesh.pl, with "output display", print contents of array, and not a reference to it. --- diff --git a/buildtools/Cmake/Scripts/tesh.pl b/buildtools/Cmake/Scripts/tesh.pl index ec72da11c2..5635c4c487 100755 --- a/buildtools/Cmake/Scripts/tesh.pl +++ b/buildtools/Cmake/Scripts/tesh.pl @@ -375,7 +375,7 @@ sub parse_out { my $diff; if (defined($cmd{'output display'})){ print "[Tesh/INFO] Here is the (ignored) command output:\n"; - map { print "||$_\n" } \@got; + map { print "||$_\n" } @got; } elsif (!defined($cmd{'output ignore'})){ $diff = build_diff(\@{$cmd{'out'}}, \@got);