aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2022-07-14 20:34:46 -0700
committerGitHub <noreply@github.com>2022-07-14 20:34:46 -0700
commit439d31bc777a6f9c9354dbe9a82495a9b4fa04ae (patch)
tree79a5632a9e8e6a08c115e45efba0e9119dba75ec /test
parent3f962a20b9295f8b3e8a1a8cfba31ffdec8f8887 (diff)
downloadruby-439d31bc777a6f9c9354dbe9a82495a9b4fa04ae.tar.gz
MJIT: Merge mjit_worker.c back to mjit.c (#6138)
Since #6006, we no longer avoid executing GC on mjit_worker.c and thus there's no need to carefully change how we write code whether you're in mjit.c or mjit_worker.c anymore.
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_mjit.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_mjit.rb b/test/ruby/test_mjit.rb
index 7fb984a024..fd7a4e270a 100644
--- a/test/ruby/test_mjit.rb
+++ b/test/ruby/test_mjit.rb
@@ -1228,7 +1228,7 @@ class TestMJIT < Test::Unit::TestCase
success_actual = err.scan(/^#{JIT_SUCCESS_PREFIX}:/).size
recompile_actual = err.scan(/^#{JIT_RECOMPILE_PREFIX}:/).size
# Add --mjit-verbose=2 logs for cl.exe because compiler's error message is suppressed
- # for cl.exe with --mjit-verbose=1. See `start_process` in mjit_worker.c.
+ # for cl.exe with --mjit-verbose=1. See `start_process` in mjit.c.
if RUBY_PLATFORM.match?(/mswin/) && success_count != success_actual
out2, err2 = eval_with_jit(script, verbose: 2, min_calls: min_calls, max_cache: max_cache)
end