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
This commit is contained in:
k0kubun 2018-08-14 23:23:44 +00:00
Родитель ab7e34e4db
Коммит 1684a1bd71
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

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