diff options
author | k0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-07-29 10:31:57 +0000 |
---|---|---|
committer | k0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-07-29 10:31:57 +0000 |
commit | b4705a52d69fbc92780cb61a99ba6e2041736f17 (patch) | |
tree | f227ed023d6045c0d613518cc887a1f2c1526465 /common.mk | |
parent | c95467e597963a3016ba918235c4400c6e00adb5 (diff) | |
download | bundler-b4705a52d69fbc92780cb61a99ba6e2041736f17.tar.gz |
common.mk: test-all requires install for now
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64103 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'common.mk')
-rw-r--r-- | common.mk | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -735,7 +735,9 @@ test: btest-ruby test-knownbug test-basic # $ make test-all TESTOPTS="--help" displays more detail # for example, make test-all TESTOPTS="-j2 -v -n test-name -- test-file-name" test-all: $(TEST_RUNNABLE)-test-all -yes-test-all: programs PHONY +# `make test-all` depends on `make install`: Since r62262, test_jit.rb fails if installed MJIT header is not updated +# and --enable-load-relative is not specified. We don't have solution for this yet. See also: https://bugs.ruby-lang.org/issues/13620 +yes-test-all: programs install PHONY $(gnumake_recursive)$(Q)$(exec) $(RUNRUBY) "$(srcdir)/test/runner.rb" --ruby="$(RUNRUBY)" $(TEST_EXCLUDES) $(TESTOPTS) $(TESTS) TESTS_BUILD = mkmf no-test-all: PHONY |