Skip to content

Commit

Permalink
[t] Change PARROT from ENV var to calculated, to fix RT#76680
Browse files Browse the repository at this point in the history
  • Loading branch information
Util committed Jul 22, 2010
1 parent 08809ca commit ca32e3a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build/Makefile.in
Expand Up @@ -408,7 +408,7 @@ test : coretest
fulltest: coretest stresstest

coretest: Test.pir $(PERL6_EXE)
PARROT=$(PARROT) $(PERL) t/harness t/00-parrot t/01-sanity t/02-embed
$(PERL) t/harness t/00-parrot t/01-sanity t/02-embed

# Run the spectests that we know work.
spectest_regression: spectest
Expand Down
4 changes: 3 additions & 1 deletion t/02-embed/01-load.t
@@ -1,3 +1,5 @@
use v6;
my $parrot = %*ENV{'PARROT'};
my $bindir = $*VM<config><bindir> or die 'No bindir found';
my $exe = $*VM<config><exe> // '';
my $parrot = "$bindir/parrot$exe";
run("$parrot t/02-embed/01-load.pir");

0 comments on commit ca32e3a

Please sign in to comment.