Skip to content

Commit

Permalink
handle different build layouts in test_summary.pl
Browse files Browse the repository at this point in the history
  • Loading branch information
moritz committed Feb 15, 2009
1 parent 314d8ce commit a3fd610
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tools/test_summary.pl
Expand Up @@ -73,7 +73,8 @@
my $tname = $tname{$tfile};
my $syn = substr($tname, 0, 3); $syn{$syn}++;
printf "%s%s..", $tname, '.' x ($max - length($tname));
my $cmd = "../../parrot perl6.pbc $tfile";
my $parrot = -d 'parrot' ? 'parrot/parrot' : '../../parrot';
my $cmd = "$parrot perl6.pbc $tfile";
my @results = split "\n", `$cmd`;
my ($test, $pass, $fail, $todo, $skip) = (0,0,0,0,0);
my (%skip, %todopass, %todofail);
Expand Down

0 comments on commit a3fd610

Please sign in to comment.