aboutsummaryrefslogtreecommitdiffstats
path: root/appveyor.yml
diff options
context:
space:
mode:
authork0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-08-14 23:23:44 +0000
committerk0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-08-14 23:23:44 +0000
commita20e0d088af70251279181e9fa1171336342e754 (patch)
tree050eab0e632e12d37d343543e7745c29d873e1c6 /appveyor.yml
parent9041c4cd49572ea35a20ac8be37698181ca527fa (diff)
downloadruby-a20e0d088af70251279181e9fa1171336342e754.tar.gz
appveyor.yml: remove broken --name option
Currently all tests are skipped by the --name option. V=1 is for debugging this issue. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64364 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/appveyor.yml b/appveyor.yml
index 39e22e4082..e2e619a0a5 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -130,7 +130,8 @@ for:
sh -c "mingw32-make -j$(nproc)"
sh -c "mingw32-make -j$(nproc) install"
test_script:
+ # Overriding TEST_EXCLUDES because `--name=!/memory_leak/` is considered as a positive filter on AppVeyor msys2.
- |
sh -c "mingw32-make test"
- sh -c "mingw32-make -j$(nproc) test-all RUBY_FORCE_TEST_JIT=1"
+ sh -c "mingw32-make -j$(nproc) test-all RUBY_FORCE_TEST_JIT=1 V=1 TEST_EXCLUDES='--excludes-dir=test/excludes'"
sh -c "mingw32-make -j$(nproc) test-spec MSPECOPT=-j"