diff options
author | Takashi Kokubun <takashikkbn@gmail.com> | 2022-05-20 21:31:00 -0700 |
---|---|---|
committer | Takashi Kokubun <takashikkbn@gmail.com> | 2022-05-20 21:32:55 -0700 |
commit | ead96e7b44b98bef4896d836239345012821f1d2 (patch) | |
tree | 355a7f48a0691e65600864476a1289598b0c79f1 /.github/workflows | |
parent | aef36bb9333bdafcc5af44dcd77942656f52b802 (diff) | |
download | ruby-ead96e7b44b98bef4896d836239345012821f1d2.tar.gz |
Rename test_jit to test_mjit
to avoid confusion with YJIT
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/compilers.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/compilers.yml b/.github/workflows/compilers.yml index 886cbd3cd1..ee7f9293d1 100644 --- a/.github/workflows/compilers.yml +++ b/.github/workflows/compilers.yml @@ -251,8 +251,8 @@ jobs: # FIXME: Skip MJIT tests failing in the annocheck case. # https://bugs.ruby-lang.org/issues/18781 - run: | - rm test/ruby/test_jit.rb - rm test/ruby/test_rubyvm_jit.rb + rm test/ruby/test_mjit.rb + rm test/ruby/test_rubyvm_mjit.rb if: ${{ endsWith(matrix.entry.name, 'annocheck') }} working-directory: src - run: make test-all TESTS='-- ruby -ext-' |