diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-09-14 01:56:41 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-09-14 01:56:41 +0000 |
| commit | 878133915f909066b976aec4f60471baf230c01b (patch) | |
| tree | 226ea9eed90343bd9542934abe25cc84fe019624 | |
| parent | cb332b1c1be6b3c90be32d620da46010d1b2cd5d (diff) | |
| download | ruby-878133915f909066b976aec4f60471baf230c01b.tar.gz ruby-878133915f909066b976aec4f60471baf230c01b.tar.xz ruby-878133915f909066b976aec4f60471baf230c01b.zip | |
* common.mk (check-ruby): run all test of ruby itself.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24920 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | common.mk | 6 |
2 files changed, 10 insertions, 0 deletions
@@ -1,3 +1,7 @@ +Mon Sep 14 10:56:40 2009 Nobuyoshi Nakada <nobu@ruby-lang.org> + + * common.mk (check-ruby): run all test of ruby itself. + Mon Sep 14 10:44:47 2009 Nobuyoshi Nakada <nobu@ruby-lang.org> * include/ruby/ruby.h (RB_TYPE_P): should not use BUILTIN_TYPE for @@ -389,6 +389,7 @@ clean-enc distclean-enc realclean-enc: @-$(MAKE) -f $(ENC_MK) $(MFLAGS) $(@:-enc=) check: test test-all +check-ruby: test test-ruby btest: miniruby$(EXEEXT) $(TEST_RUNNABLE)-btest no-btest: PHONY @@ -417,6 +418,11 @@ no-test-all: PHONY yes-test-all: PHONY $(RUNRUBY) "$(srcdir)/test/runner.rb" $(TESTS) +test-ruby: $(TEST_RUNNABLE)-test-ruby +no-test-ruby: PHONY +yes-test-ruby: PHONY + $(RUNRUBY) "$(srcdir)/test/runner.rb" ruby + extconf: $(PREP) $(MAKEDIRS) "$(EXTCONFDIR)" $(RUNRUBY) -C "$(EXTCONFDIR)" $(EXTCONF) $(EXTCONFARGS) |
