aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpmichaud <pmichaud@pobox.com>2010-09-29 00:36:01 -0500
committerpmichaud <pmichaud@pobox.com>2010-09-29 00:36:01 -0500
commit9bd5544fde28adf14f5d0199d6ba69973db7bec0 (patch)
tree66b9b73427871cd6e788c7800b4f8b0f1ae2d595
parent81b9fbc72a692a052a33f879c64576f5684d1157 (diff)
Add 'make rakudo-spectest' target.
-rw-r--r--skel/build/Makefile.in3
1 files changed, 3 insertions, 0 deletions
diff --git a/skel/build/Makefile.in b/skel/build/Makefile.in
index c94d541..22e33e1 100644
--- a/skel/build/Makefile.in
+++ b/skel/build/Makefile.in
@@ -82,6 +82,8 @@ rakudo/$(PERL6_EXE):
cd rakudo && $(PERL) Configure.pl --parrot-config=$(PARROT_CONFIG) && $(MAKE)
rakudo-test: rakudo/perl6
cd rakudo && $(MAKE) test
+rakudo-spectest: rakudo/perl6
+ cd rakudo && $(MAKE) spectest
rakudo-install: rakudo
cd rakudo && $(MAKE) install
@win32_libparrot_copy@
@@ -104,6 +106,7 @@ install: rakudo-install modules-install
test:
@echo ""
@echo "To run the Rakudo compiler tests, use 'make rakudo-test'"
+ @echo "To run the Perl 6 spectests, use 'make rakudo-spectest'"
@echo ""
@echo "To run tests for individual modules, try:"
@echo " prove -e ./perl6 -r modules/<name>/t"