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.
This commit is contained in:
Nobuyoshi Nakada 2023-08-13 15:23:54 +09:00
parent b56e5c6b94
commit efc9127790
No known key found for this signature in database
GPG Key ID: 3582D74E1FEE4465
Notes: git 2023-08-13 09:58:58 +00:00
11 changed files with 3 additions and 3 deletions

View File

@ -93,7 +93,7 @@ for:
- nmake -l "TESTOPTS=-v -q" test-basic
- >-
nmake -l "TESTOPTS=-v --timeout-scale=3.0
--excludes=../test/excludes/_appveyor -j%JOBS%
--excludes=../test/.excludes/_appveyor -j%JOBS%
--exclude win32ole
--exclude test_bignum
--exclude test_syntax
@ -103,7 +103,7 @@ for:
# separately execute tests without -j which may crash worker with -j.
- >-
nmake -l
"TESTOPTS=--timeout-scale=3.0 --excludes=../test/excludes/_appveyor"
"TESTOPTS=--timeout-scale=3.0 --excludes=../test/.excludes/_appveyor"
TESTS="
../test/win32ole
../test/ruby/test_bignum.rb

View File

@ -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)