Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
In tesh.pl, with "output display", print contents of array, and not a reference to it.
[simgrid.git] / buildtools / Cmake / Scripts / tesh.pl
index ec72da11c279e8ac05b91f89b551118a3e73762d..5635c4c487eed5024107d5d88ed3d90bfecc0f5e 100755 (executable)
@@ -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);