File tree Expand file tree Collapse file tree 2 files changed +12
-2
lines changed
Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Original file line number Diff line number Diff line change 1+ Thu Sep 17 17:42:09 2015 SHIBATA Hiroshi <hsbt@ruby-lang.org>
2+
3+ * common.mk: separated test for test-framework from test-all task.
4+ They should be invoke at first before tests of test-all.
5+
16Thu Sep 17 12:05:54 2015 KOSAKI Motohiro <kosaki.motohiro@gmail.com>
27
38 * test/ruby/test_dir.rb (TestDir#test_fileno): s/?x/"x"/. Don't
Original file line number Diff line number Diff line change @@ -143,7 +143,7 @@ PRE_LIBRUBY_UPDATE = $(MINIRUBY) -e 'ARGV[1] or File.unlink(ARGV[0]) rescue nil'
143143 $(LIBRUBY_EXTS ) $(LIBRUBY_SO_UPDATE )
144144
145145TESTSDIR = $(srcdir ) /test
146- TEST_EXCLUDES = --excludes=$(TESTSDIR ) /excludes -x /memory_leak/
146+ TEST_EXCLUDES = --excludes=$(TESTSDIR ) /excludes -x /testunit/ -x /minitest/ -x / memory_leak/
147147TESTWORKDIR = testwork
148148TESTOPTS = $(RUBY_TESTOPTS )
149149
@@ -578,9 +578,14 @@ no-test-knownbug: PHONY
578578yes-test-knownbug : prog PHONY
579579 -$(exec ) $(RUNRUBY ) " $( srcdir) /bootstraptest/runner.rb" --ruby=" $( PROGRAM) $( RUN_OPTS) " $(OPTS ) $(TESTOPTS ) $(srcdir ) /KNOWNBUGS.rb
580580
581+ test-testframework : $(TEST_RUNNABLE ) -test-testframework
582+ no-test-testframework : PHONY
583+ yes-test-testframework : prog PHONY
584+ $(Q )$(exec ) $(RUNRUBY ) " $( srcdir) /test/runner.rb" --ruby=" $( RUNRUBY) " $(TESTOPTS ) test/testunit test/minitest
585+
581586test : test-sample btest-ruby test-knownbug
582587
583- test-all : $(TEST_RUNNABLE ) -test-all
588+ test-all : test-testframework $(TEST_RUNNABLE ) -test-all
584589yes-test-all : prog PHONY
585590 $(Q )$(exec ) $(RUNRUBY ) " $( srcdir) /test/runner.rb" --ruby=" $( RUNRUBY) " $(TEST_EXCLUDES ) $(TESTOPTS ) $(TESTS )
586591TESTS_BUILD = mkmf
You can’t perform that action at this time.
0 commit comments