diff options
author | Nobuyoshi Nakada <nobu@ruby-lang.org> | 2022-11-13 23:54:43 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <nobu@ruby-lang.org> | 2022-11-13 23:54:43 +0900 |
commit | 2f7d2662dd90a6985f1c98ea93cfc2026407a8ab (patch) | |
tree | ac8ef2e95da478604a18b3af51378e2290c4ac44 /common.mk | |
parent | 8d82f4ba1c715da6a50b8626792a49c343914efd (diff) | |
download | ruby-2f7d2662dd90a6985f1c98ea93cfc2026407a8ab.tar.gz |
Control non-parallel parts with `.WAIT` if available
Diffstat (limited to 'common.mk')
-rw-r--r-- | common.mk | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -776,7 +776,7 @@ clean-spec: PHONY -$(Q) $(RMDIRS) $(RUBYSPEC_CAPIEXT) 2> $(NULL) || $(NULLCMD) -$(Q) $(RMALL) rubyspec_temp -check: main test test-tool test-all test-spec +check: main $(DOT_WAIT) test $(DOT_WAIT) test-tool $(DOT_WAIT) test-all $(DOT_WAIT) test-spec $(ECHO) check succeeded -$(Q) : : "run only on sh"; \ if [ x"$(GIT)" != x ] && $(CHDIR) "$(srcdir)" && \ @@ -854,7 +854,7 @@ yes-test-tool: prog PHONY no-test-tool: PHONY test-sample: test-basic # backward compatibility for mswin-build -test-short: btest-ruby test-knownbug test-basic +test-short: btest-ruby $(DOT_WAIT) test-knownbug $(DOT_WAIT) test-basic test: test-short # $ make test-all TESTOPTS="--help" displays more detail |