From f42150744cc0d65ee3d5b2f0064d959de6038802 Mon Sep 17 00:00:00 2001 From: aamine Date: Sat, 24 Feb 2007 10:39:30 +0000 Subject: [PATCH] * common.mk: new target "btest", to run bootstraptests. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11870 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ common.mk | 5 +++++ 2 files changed, 9 insertions(+) diff --git a/ChangeLog b/ChangeLog index f0c60666d9..f08d12160c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Sat Feb 24 19:39:16 2007 Minero Aoki + + * common.mk: new target "btest", to run bootstraptests. + Sat Feb 24 19:30:40 2007 Nobuyoshi Nakada * file.c, gc.c, io.c, ruby.h, rubyio.h, win32/win32.h (rb_io_t): diff --git a/common.mk b/common.mk index 64ba63c222..e2618db36f 100644 --- a/common.mk +++ b/common.mk @@ -89,6 +89,8 @@ PRE_LIBRUBY_UPDATE = $(MINIRUBY) -e 'ARGV[1] or File.unlink(ARGV[0]) rescue nil' TESTSDIR = $(srcdir)/test TESTWORKDIR = testwork +BOOTSTRAPRUBY = $(MINIRUBY) + all: $(MKFILES) $(PREP) $(RBCONFIG) $(LIBRUBY) @$(MINIRUBY) $(srcdir)/ext/extmk.rb $(EXTMK_ARGS) prog: $(PROGRAM) $(WPROGRAM) @@ -302,6 +304,9 @@ realclean:: distclean check: test test-all +btest: $(MINIRUBY) PHONY + @$(BOOTSTRAPRUBY) "$(srcdir)/bootstraptest/runner.rb" --ruby="$(MINIRUBY)" + test: miniruby$(EXEEXT) $(RBCONFIG) $(PROGRAM) PHONY @$(MINIRUBY) $(srcdir)/rubytest.rb