From 2832ba80d6cb9ff77f1e18b6afccf3bb9d884dd0 Mon Sep 17 00:00:00 2001 From: Takashi Kokubun Date: Sat, 18 Apr 2020 18:39:32 -0700 Subject: [PATCH] The pdb header error is printed at stdout https://ci.appveyor.com/project/ruby/ruby/builds/32278754/job/90jmky2jq2k0wjv8 --- test/lib/jit_support.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/lib/jit_support.rb b/test/lib/jit_support.rb index b590346198..8f1c024ee7 100644 --- a/test/lib/jit_support.rb +++ b/test/lib/jit_support.rb @@ -65,8 +65,8 @@ module JITSupport # Until we figure out why, this allows us to skip testing JIT when it happens. def vs120_pdb_corrupted? return false unless ENV.key?('APPVEYOR') - _stdout, stderr, _status = eval_with_jit_without_retry('proc {}.call', verbose: 2, min_calls: 1) - stderr.include?('x64-mswin64_120') && stderr.include?('.pdb is not the pdb file that was used when this precompiled header was created, recreate the precompiled header.') + stdout, _stderr, _status = eval_with_jit_without_retry('proc {}.call', verbose: 2, min_calls: 1) + stdout.include?('x64-mswin64_120') && stdout.include?('.pdb is not the pdb file that was used when this precompiled header was created, recreate the precompiled header.') end def remove_mjit_logs(stderr)