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
+
1
6
Thu Sep 17 12:05:54 2015 KOSAKI Motohiro <kosaki.motohiro@gmail.com>
2
7
3
8
* 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'
143
143
$(LIBRUBY_EXTS ) $(LIBRUBY_SO_UPDATE )
144
144
145
145
TESTSDIR = $(srcdir ) /test
146
- TEST_EXCLUDES = --excludes=$(TESTSDIR ) /excludes -x /memory_leak/
146
+ TEST_EXCLUDES = --excludes=$(TESTSDIR ) /excludes -x /testunit/ -x /minitest/ -x / memory_leak/
147
147
TESTWORKDIR = testwork
148
148
TESTOPTS = $(RUBY_TESTOPTS )
149
149
@@ -578,9 +578,14 @@ no-test-knownbug: PHONY
578
578
yes-test-knownbug : prog PHONY
579
579
-$(exec ) $(RUNRUBY ) " $( srcdir) /bootstraptest/runner.rb" --ruby=" $( PROGRAM) $( RUN_OPTS) " $(OPTS ) $(TESTOPTS ) $(srcdir ) /KNOWNBUGS.rb
580
580
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
+
581
586
test : test-sample btest-ruby test-knownbug
582
587
583
- test-all : $(TEST_RUNNABLE ) -test-all
588
+ test-all : test-testframework $(TEST_RUNNABLE ) -test-all
584
589
yes-test-all : prog PHONY
585
590
$(Q )$(exec ) $(RUNRUBY ) " $( srcdir) /test/runner.rb" --ruby=" $( RUNRUBY) " $(TEST_EXCLUDES ) $(TESTOPTS ) $(TESTS )
586
591
TESTS_BUILD = mkmf
You can’t perform that action at this time.
0 commit comments