Closed
Bug 812241
Opened 13 years ago
Closed 13 years ago
Remove warnings about disabled tests
Categories
(Firefox Build System :: General, defect)
Firefox Build System
General
Tracking
(Not tracked)
RESOLVED
FIXED
mozilla20
People
(Reporter: seth, Assigned: seth)
Details
Attachments
(1 file, 2 obsolete files)
25.72 KB,
patch
|
Details | Diff | Splinter Review |
All of the warnings about disabled tests are very distracting if you use build integration in your editor to jump to errors and so forth. Frustratingly, they are also printed every time, even if nothing has changed. I'd estimate that being able to disable these warnings would save me about 30 seconds of skipping meaningless issues to get to the real errors every time I do a build.
We should just remove them entirely. They're not useful.
Summary: There should be a way to silence warnings about disabled tests using .mozconfig → Remove warnings about disabled tests
Assignee | ||
Comment 2•13 years ago
|
||
Even better! =)
Assignee | ||
Comment 3•13 years ago
|
||
CC'ing some parties that might have opinions on this.
So the reason I made them warnings initially was that:
* I wanted to leave them in the makefile so that it's clear looking at the makefile that some tests are disabled
* commenting things within a multiline list in a makefile is painful
I suppose we could change to something like:
$(filter disabled, test_bugNNNNNN.html) \
or:
$(if , test_bugNNNN.html)
Assignee | ||
Comment 5•13 years ago
|
||
This should take care of it. I took an approach based upon the $filter() suggestion, since it enabled me easily retain some metadata about the reason each test is disabled.
Attachment #682195 -
Flags: review?(khuey)
Assignee | ||
Updated•13 years ago
|
Assignee: nobody → seth
Assignee | ||
Comment 6•13 years ago
|
||
Try job here: https://tbpl.mozilla.org/?tree=Try&rev=363b593202e2
Comment on attachment 682195 [details] [diff] [review]
Remove disabled test warnings.
Review of attachment 682195 [details] [diff] [review]:
-----------------------------------------------------------------
I didn't actually look at the whole thing. I assume you can do text replacement competently ;-)
Attachment #682195 -
Flags: review?(khuey) → review+
Assignee | ||
Comment 8•13 years ago
|
||
Thanks for the vote of confidence Kyle. =) Try looks good; requesting checkin.
Keywords: checkin-needed
Assignee | ||
Comment 9•13 years ago
|
||
Assignee | ||
Comment 10•13 years ago
|
||
Updated against current mozilla-central. (A new disabled test was added.)
Assignee | ||
Updated•13 years ago
|
Attachment #682195 -
Attachment is obsolete: true
Assignee | ||
Updated•13 years ago
|
Attachment #683783 -
Attachment is obsolete: true
Comment 11•13 years ago
|
||
Keywords: checkin-needed
Comment 12•13 years ago
|
||
Status: NEW → RESOLVED
Closed: 13 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla20
Comment 13•12 years ago
|
||
Try run for 363b593202e2 is complete.
Detailed breakdown of the results available here:
https://tbpl.mozilla.org/?tree=Try&rev=363b593202e2
Results (out of 260 total builds):
success: 248
warnings: 10
failure: 1
other: 1
Builds (or logs if builds failed) available at:
http://ftp.mozilla.org/pub/mozilla.org/firefox/try-builds/mfowler@mozilla.com-363b593202e2
Updated•7 years ago
|
Product: Core → Firefox Build System
You need to log in
before you can comment on or make changes to this bug.
Description
•