Closed
Bug 1347000
Opened 8 years ago
Closed 8 years ago
False-positive "Sync message not found, it appears to be fixed" on Windows builds
Categories
(Core :: IPC, enhancement)
Tracking
()
RESOLVED
FIXED
mozilla55
Tracking | Status | |
---|---|---|
firefox55 | --- | fixed |
People
(Reporter: bugzilla, Assigned: erahm)
References
Details
Attachments
(1 file)
8.62 KB,
patch
|
billm
:
review+
|
Details | Diff | Splinter Review |
Most of the sync messages for PDocAccessible do not exist on Windows, so ipdl spews a bunch of error messages telling us to remove their entries. Of course, their existence in sync-messages.ini is perfectly legitimate for other platforms.
Can we preprocess this file or something?
(Yes, I know we avoid it in IPDL proper)
They're supposed to be annotated with |platform = win| or something like. Maybe you could instead write |platform = not-win|. The actual value is not checked.
Assignee | ||
Comment 2•8 years ago
|
||
MozReview-Commit-ID: 6ZLCJKotqEE
Attachment #8849746 -
Flags: review?(wmccloskey)
Assignee | ||
Updated•8 years ago
|
Assignee: nobody → erahm
Status: NEW → ASSIGNED
Assignee | ||
Comment 3•8 years ago
|
||
For reference and ease of reviewing:
There are 120 errors on a recent windows build [1]. I ran this script, fix_errors.sh:
> #!/bin/bash
> sed -i "/\[$2\]/{n;s/$/\nplatform = notwin/}" $1
through xargs:
> cat errors.txt | xargs -n1 fix_errors.sh ipc/ipdl/sync-messages.ini
Which made 120 changes:
> hg qdiff --stat
> ipc/ipdl/sync-messages.ini | 120 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
> 1 files changed, 120 insertions(+), 0 deletions(-)
[1] https://treeherder.mozilla.org/logviewer.html#?job_id=85372495&repo=mozilla-central&lineNumber=3310-3549
Assignee | ||
Comment 4•8 years ago
|
||
Comment 5•8 years ago
|
||
Comment on attachment 8849746 [details] [diff] [review]
Fix false-positive sync message not found errors on windows builds
Review of attachment 8849746 [details] [diff] [review]:
-----------------------------------------------------------------
I'd r+ this but the hg hook we have for sync-messages.ini would catch you since I'm not an IPC peer...
Assignee | ||
Comment 6•8 years ago
|
||
Comment on attachment 8849746 [details] [diff] [review]
Fix false-positive sync message not found errors on windows builds
Review of attachment 8849746 [details] [diff] [review]:
-----------------------------------------------------------------
Thanks.
Attachment #8849746 -
Flags: review?(wmccloskey) → review+
Assignee | ||
Comment 8•8 years ago
|
||
https://hg.mozilla.org/integration/mozilla-inbound/rev/8631af6d80424703a260191df10e6c5e46b94292
Bug 1347000 - Fix false-positive sync message not found errors on windows builds. r=billm
Comment 9•8 years ago
|
||
bugherder |
Status: ASSIGNED → RESOLVED
Closed: 8 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla55
You need to log in
before you can comment on or make changes to this bug.
Description
•