aboutsummaryrefslogtreecommitdiffstats
path: root/common.mk
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2022-09-14 00:06:46 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2022-09-14 11:27:05 +0900
commit035978d7be9bc3819f42f964fe6193d983cce63f (patch)
tree873e5eacdc11612088c67b1bca4b985818daa929 /common.mk
parentc428fc0e1f00ad1176f42157ea9df8d3d19dbd1c (diff)
downloadruby-035978d7be9bc3819f42f964fe6193d983cce63f.tar.gz
Pass job-server FDs to bundler tests
Diffstat (limited to 'common.mk')
-rw-r--r--common.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/common.mk b/common.mk
index 94c5a3a994..64d771fa1c 100644
--- a/common.mk
+++ b/common.mk
@@ -1475,14 +1475,14 @@ RSPECOPTS =
BUNDLER_SPECS =
test-bundler: $(TEST_RUNNABLE)-test-bundler
yes-test-bundler: yes-test-bundler-prepare
- $(XRUBY) -C $(srcdir) -Ispec/bundler .bundle/bin/rspec \
+ $(gnumake_recursive)$(XRUBY) -C $(srcdir) -Ispec/bundler .bundle/bin/rspec \
--require spec_helper $(RSPECOPTS) spec/bundler/$(BUNDLER_SPECS)
no-test-bundler:
PARALLELRSPECOPTS = --runtime-log $(srcdir)/tmp/parallel_runtime_rspec.log
test-bundler-parallel: $(TEST_RUNNABLE)-test-bundler-parallel
yes-test-bundler-parallel: yes-test-bundler-prepare
- $(XRUBY) \
+ $(gnumake_recursive)$(XRUBY) \
-e "ARGV[-1] = File.expand_path(ARGV[-1])" \
-e "exec(*ARGV)" -- \
$(XRUBY) -I$(srcdir)/spec/bundler \