123456789101112131415161718192021222324 |
- From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
- From: Zac Walker <[email protected]>
- Date: Thu, 20 Sep 2018 17:49:55 -0700
- Subject: ignore_rc_check.patch
- Dont compare RC.exe and RC.py output.
- FIXME: It has to be reverted once the script is fixed.
- diff --git a/build/toolchain/win/rc/rc.py b/build/toolchain/win/rc/rc.py
- index 74761866eecfe4e742af974aab71ec05817c3a6a..91ad9ac4c7d59be0cc95341d61e0e30a23869601 100755
- --- a/build/toolchain/win/rc/rc.py
- +++ b/build/toolchain/win/rc/rc.py
- @@ -234,7 +234,10 @@ def CompareToMsRcOutput(preprocessed_output, is_utf8, flags):
- # Assert Microsoft rc.exe and rc.py produced identical .res files.
- if rc_exe_exit_code == 0:
- import filecmp
- - assert filecmp.cmp(msrc_out, flags.output)
- + # Temporarily ignore compares
- + # Nightly builds use very large version numbers that fail this check
- + # FIXME(zacwalk): Enable the assert.
- + # assert filecmp.cmp(msrc_out, flags.output)
- return rc_exe_exit_code
-
-
|