diff options
| author | Nobuyoshi Nakada <nobu@ruby-lang.org> | 2023-08-13 15:23:54 +0900 |
|---|---|---|
| committer | Nobuyoshi Nakada <nobu@ruby-lang.org> | 2023-08-13 15:23:54 +0900 |
| commit | efc9127790e2e725541de2c36780a852e6c1382c (patch) | |
| tree | b12e2c4dc82b9522aeacfab00b5ac0441a35e35c | |
| parent | b56e5c6b9425a19c04d4e59410463155ea9db30c (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
| -rw-r--r-- | .appveyor.yml | 4 | ||||
| -rw-r--r-- | common.mk | 2 | ||||
| -rw-r--r-- | test/.excludes/TestArray.rb (renamed from test/excludes/TestArray.rb) | 0 | ||||
| -rw-r--r-- | test/.excludes/TestArraySubclass.rb (renamed from test/excludes/TestArraySubclass.rb) | 0 | ||||
| -rw-r--r-- | test/.excludes/TestException.rb (renamed from test/excludes/TestException.rb) | 0 | ||||
| -rw-r--r-- | test/.excludes/TestGem.rb (renamed from test/excludes/TestGem.rb) | 0 | ||||
| -rw-r--r-- | test/.excludes/TestIO_Console.rb (renamed from test/excludes/TestIO_Console.rb) | 0 | ||||
| -rw-r--r-- | test/.excludes/TestISeq.rb (renamed from test/excludes/TestISeq.rb) | 0 | ||||
| -rw-r--r-- | test/.excludes/TestThread.rb (renamed from test/excludes/TestThread.rb) | 0 | ||||
| -rw-r--r-- | test/.excludes/TestThreadQueue.rb (renamed from test/excludes/TestThreadQueue.rb) | 0 | ||||
| -rw-r--r-- | test/.excludes/_appveyor/TestArray.rb (renamed from test/excludes/_appveyor/TestArray.rb) | 0 |
11 files changed, 3 insertions, 3 deletions
diff --git a/.appveyor.yml b/.appveyor.yml index fdab2008e8..ab8ac580ec 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -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 @@ -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) diff --git a/test/excludes/TestArray.rb b/test/.excludes/TestArray.rb index 73da272007..73da272007 100644 --- a/test/excludes/TestArray.rb +++ b/test/.excludes/TestArray.rb diff --git a/test/excludes/TestArraySubclass.rb b/test/.excludes/TestArraySubclass.rb index 73da272007..73da272007 100644 --- a/test/excludes/TestArraySubclass.rb +++ b/test/.excludes/TestArraySubclass.rb diff --git a/test/excludes/TestException.rb b/test/.excludes/TestException.rb index 38d66d63d2..38d66d63d2 100644 --- a/test/excludes/TestException.rb +++ b/test/.excludes/TestException.rb diff --git a/test/excludes/TestGem.rb b/test/.excludes/TestGem.rb index 042af26eff..042af26eff 100644 --- a/test/excludes/TestGem.rb +++ b/test/.excludes/TestGem.rb diff --git a/test/excludes/TestIO_Console.rb b/test/.excludes/TestIO_Console.rb index caf1935fec..caf1935fec 100644 --- a/test/excludes/TestIO_Console.rb +++ b/test/.excludes/TestIO_Console.rb diff --git a/test/excludes/TestISeq.rb b/test/.excludes/TestISeq.rb index b99181eeaf..b99181eeaf 100644 --- a/test/excludes/TestISeq.rb +++ b/test/.excludes/TestISeq.rb diff --git a/test/excludes/TestThread.rb b/test/.excludes/TestThread.rb index cf7e88427e..cf7e88427e 100644 --- a/test/excludes/TestThread.rb +++ b/test/.excludes/TestThread.rb diff --git a/test/excludes/TestThreadQueue.rb b/test/.excludes/TestThreadQueue.rb index c8231e372a..c8231e372a 100644 --- a/test/excludes/TestThreadQueue.rb +++ b/test/.excludes/TestThreadQueue.rb diff --git a/test/excludes/_appveyor/TestArray.rb b/test/.excludes/_appveyor/TestArray.rb index 7d03833f07..7d03833f07 100644 --- a/test/excludes/_appveyor/TestArray.rb +++ b/test/.excludes/_appveyor/TestArray.rb |
