1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

The pdb header error is printed at stdout

https://ci.appveyor.com/project/ruby/ruby/builds/32278754/job/90jmky2jq2k0wjv8
This commit is contained in:
Takashi Kokubun 2020-04-18 18:39:32 -07:00
parent c0b9326749
commit 2832ba80d6
No known key found for this signature in database
GPG key ID: 6FFC433B12EE23DD

View file

@ -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)