summaryrefslogtreecommitdiff
path: root/common.mk
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2023-08-13 15:23:54 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2023-08-13 15:23:54 +0900
commitefc9127790e2e725541de2c36780a852e6c1382c (patch)
treeb12e2c4dc82b9522aeacfab00b5ac0441a35e35c /common.mk
parentb56e5c6b9425a19c04d4e59410463155ea9db30c (diff)
Prefix `excludes` with a dot to prevent chkbuild from firing wrongly
Chkbuild runs for each directories just under `test` directory when `test-all` failed. `test/excludes` itself should not be a target.
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/8214
Diffstat (limited to 'common.mk')
-rw-r--r--common.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/common.mk b/common.mk
index b174687903..d031ab2886 100644
--- a/common.mk
+++ b/common.mk
@@ -259,7 +259,7 @@ INSTALL_DATA_MODE = 0644
BOOTSTRAPRUBY_COMMAND = $(BOOTSTRAPRUBY) $(BOOTSTRAPRUBY_OPT)
TESTSDIR = $(srcdir)/test
TOOL_TESTSDIR = $(tooldir)/test
-TEST_EXCLUDES = --excludes-dir=$(TESTSDIR)/excludes --name=!/memory_leak/
+TEST_EXCLUDES = --excludes-dir=$(TESTSDIR)/.excludes --name=!/memory_leak/
TESTWORKDIR = testwork
TESTOPTS = $(RUBY_TESTOPTS)