summaryrefslogtreecommitdiff
path: root/test/ruby
diff options
context:
space:
mode:
Diffstat (limited to 'test/ruby')
-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