diff options
| author | Nobuyoshi Nakada <nobu@ruby-lang.org> | 2024-01-04 17:47:26 +0900 |
|---|---|---|
| committer | Nobuyoshi Nakada <nobu@ruby-lang.org> | 2024-01-04 17:47:26 +0900 |
| commit | c945a849cb2c5fcdfa546e501f35bf8f834c8d7e (patch) | |
| tree | 91a79735750f63ec3c2e1e163881e70412030297 | |
| parent | 577bc8254e04efa7968d8a3c1bc7fcf1e9eabb91 (diff) | |
Skip test depending on bundled gems
Because bundled gems cannot be loaded at test-all, this test which
depends on one of the bundled gems, `rake`, always does nothing except
print an expected warning.
| -rw-r--r-- | common.mk | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -942,7 +942,8 @@ PRECHECK_TEST_ALL = yes-test-all-precheck test-all: $(TEST_RUNNABLE)-test-all yes-test-all: $(PRECHECK_TEST_ALL) $(ACTIONS_GROUP) - $(gnumake_recursive)$(Q)$(exec) $(RUNRUBY) "$(TESTSDIR)/runner.rb" --ruby="$(RUNRUBY)" $(TEST_EXCLUDES) $(TESTOPTS) $(TESTS) + $(gnumake_recursive)$(Q)$(exec) $(RUNRUBY) "$(TESTSDIR)/runner.rb" --ruby="$(RUNRUBY)" \ + $(TEST_EXCLUDES) $(TESTOPTS) $(TESTS) --exclude='rubygems/test_gem_package_task\.rb' $(ACTIONS_ENDGROUP) TESTS_BUILD = mkmf no-test-all: PHONY |
