From 24b8ca17d5c9874f90d66d55b8e3d4299b82ab02 Mon Sep 17 00:00:00 2001 From: k0kubun Date: Sun, 11 Mar 2018 09:36:08 +0000 Subject: [PATCH] test_jit.rb: fix typo git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62721 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_jit.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/ruby/test_jit.rb b/test/ruby/test_jit.rb index 55c03f72d8..a75aa9d974 100644 --- a/test/ruby/test_jit.rb +++ b/test/ruby/test_jit.rb @@ -547,7 +547,7 @@ class TestJIT < Test::Unit::TestCase actual = err.scan(/^#{JIT_SUCCESS_PREFIX}:/).size # Debugging on CI - if stderr.include?("gcc: error trying to exec 'cc1': execvp: No such file or directory") + if err.include?("gcc: error trying to exec 'cc1': execvp: No such file or directory") puts "test/ruby/test_jit.rb: ENV content:" pp ENV end