Closed
Bug 1075240
Opened 11 years ago
Closed 11 years ago
The mochitest harness should log disabled tests as test_start/test_end with status 'SKIP'
Categories
(Testing :: Mochitest, defect)
Tracking
(Not tracked)
RESOLVED
FIXED
mozilla35
People
(Reporter: chmanchester, Assigned: chmanchester)
Details
Attachments
(1 file)
|
3.14 KB,
patch
|
ahal
:
review+
|
Details | Diff | Splinter Review |
I'm replacing some things mozharness that summarize test counts with structured log data, and I just realized we weren't doing this already.
| Assignee | ||
Comment 1•11 years ago
|
||
| Assignee | ||
Updated•11 years ago
|
Assignee: nobody → cmanchester
Status: NEW → ASSIGNED
| Assignee | ||
Updated•11 years ago
|
Attachment #8498903 -
Flags: review?(ahalberstadt)
Comment 3•11 years ago
|
||
Comment on attachment 8498903 [details] [diff] [review]
Log disabled tests as skips in mochitests.
Review of attachment 8498903 [details] [diff] [review]:
-----------------------------------------------------------------
I'm kind of hesitant about this because it is filling the log with redundant information, but I guess it's not that big of a deal.
::: testing/mochitest/runtests.py
@@ +1620,5 @@
> + self.log.suite_start([t['path'] for t in tests])
> + for test in tests:
> + if 'disabled' in test:
> + self.log.test_start(test['path'])
> + self.log.test_end(test['path'], 'SKIP', message=test['disabled'])
It's unfortunate that we are populating the log with redundant test_start messages. How hard would it be to get the formatter to not log test_start in this case?
::: testing/mochitest/runtestsb2g.py
@@ +112,5 @@
> def run_tests(self, options):
> """ Prepare, configure, run tests and cleanup """
>
> manifest = self.build_profile(options)
> + self.logPreamble(self.getActiveTests(options))
This looks like it won't log skipped tests.. is that correct?
Attachment #8498903 -
Flags: review?(ahalberstadt) → review+
| Assignee | ||
Comment 4•11 years ago
|
||
(In reply to Andrew Halberstadt [:ahal] from comment #3)
> Comment on attachment 8498903 [details] [diff] [review]
> Log disabled tests as skips in mochitests.
>
> Review of attachment 8498903 [details] [diff] [review]:
> -----------------------------------------------------------------
>
> I'm kind of hesitant about this because it is filling the log with redundant
> information, but I guess it's not that big of a deal.
>
> ::: testing/mochitest/runtests.py
> @@ +1620,5 @@
> > + self.log.suite_start([t['path'] for t in tests])
> > + for test in tests:
> > + if 'disabled' in test:
> > + self.log.test_start(test['path'])
> > + self.log.test_end(test['path'], 'SKIP', message=test['disabled'])
>
> It's unfortunate that we are populating the log with redundant test_start
> messages. How hard would it be to get the formatter to not log test_start in
> this case?
Logging test_start/test_end with status 'SKIP' is the way to expose this from mozlog... it would be wonky to try to surpress the test_start messages, because somehow we'd have to stuff the fact it's a SKIP into the test start call.
>
> ::: testing/mochitest/runtestsb2g.py
> @@ +112,5 @@
> > def run_tests(self, options):
> > """ Prepare, configure, run tests and cleanup """
> >
> > manifest = self.build_profile(options)
> > + self.logPreamble(self.getActiveTests(options))
>
> This looks like it won't log skipped tests.. is that correct?
Oh, I think that's a bug. Thanks.
| Assignee | ||
Comment 5•11 years ago
|
||
(In reply to Chris Manchester [:chmanchester] from comment #4)
> (In reply to Andrew Halberstadt [:ahal] from comment #3)
> > Comment on attachment 8498903 [details] [diff] [review]
> > Log disabled tests as skips in mochitests.
> >
> > Review of attachment 8498903 [details] [diff] [review]:
> > -----------------------------------------------------------------
> >
> > I'm kind of hesitant about this because it is filling the log with redundant
> > information, but I guess it's not that big of a deal.
> >
> > ::: testing/mochitest/runtests.py
> > @@ +1620,5 @@
> > > + self.log.suite_start([t['path'] for t in tests])
> > > + for test in tests:
> > > + if 'disabled' in test:
> > > + self.log.test_start(test['path'])
> > > + self.log.test_end(test['path'], 'SKIP', message=test['disabled'])
> >
> > It's unfortunate that we are populating the log with redundant test_start
> > messages. How hard would it be to get the formatter to not log test_start in
> > this case?
>
> Logging test_start/test_end with status 'SKIP' is the way to expose this
> from mozlog... it would be wonky to try to surpress the test_start messages,
> because somehow we'd have to stuff the fact it's a SKIP into the test start
> call.
>
> >
> > ::: testing/mochitest/runtestsb2g.py
> > @@ +112,5 @@
> > > def run_tests(self, options):
> > > """ Prepare, configure, run tests and cleanup """
> > >
> > > manifest = self.build_profile(options)
> > > + self.logPreamble(self.getActiveTests(options))
> >
> > This looks like it won't log skipped tests.. is that correct?
>
> Oh, I think that's a bug. Thanks.
Aha, getActiveTests includes disabled tests by default, weird: http://dxr.mozilla.org/mozilla-central/source/testing/mochitest/runtests.py#1562
| Assignee | ||
Updated•11 years ago
|
Keywords: checkin-needed
Comment 6•11 years ago
|
||
(In reply to Chris Manchester [:chmanchester] from comment #4)
> Logging test_start/test_end with status 'SKIP' is the way to expose this
> from mozlog... it would be wonky to try to surpress the test_start messages,
> because somehow we'd have to stuff the fact it's a SKIP into the test start
> call.
What about some kind of suppress=[list,of,actions] fmt_option that we can apply immediately prior to logging this and remove immediately after. Probably not worth it I guess :/
| Assignee | ||
Comment 7•11 years ago
|
||
(In reply to Andrew Halberstadt [:ahal] from comment #6)
> (In reply to Chris Manchester [:chmanchester] from comment #4)
> > Logging test_start/test_end with status 'SKIP' is the way to expose this
> > from mozlog... it would be wonky to try to surpress the test_start messages,
> > because somehow we'd have to stuff the fact it's a SKIP into the test start
> > call.
>
> What about some kind of suppress=[list,of,actions] fmt_option that we can
> apply immediately prior to logging this and remove immediately after.
> Probably not worth it I guess :/
Yeah that's probably ovekill, but we could do something like that if it's a priority for the ui through fiddling with the logger's buffering settings.
Comment 8•11 years ago
|
||
Keywords: checkin-needed
Comment 9•11 years ago
|
||
Status: ASSIGNED → RESOLVED
Closed: 11 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla35
You need to log in
before you can comment on or make changes to this bug.
Description
•