Closed
Bug 1467803
Opened 7 years ago
Closed 7 years ago
Turn off static constructors perf tests for ASan builds
Categories
(Tree Management :: Perfherder, enhancement, P1)
Tree Management
Perfherder
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: igoldan, Assigned: igoldan)
References
Details
Attachments
(1 file)
These are the compiler_metrics num_static_constructors tests.
Requirement originated from https://bugzilla.mozilla.org/show_bug.cgi?id=1443077#c17
| Comment hidden (mozreview-request) |
Comment 2•7 years ago
|
||
| mozreview-review | ||
Comment on attachment 8984827 [details]
Bug 1467803 - Turn off static ctors perf tests for ASan builds
https://reviewboard.mozilla.org/r/250634/#review256904
::: toolkit/crashreporter/tools/symbolstore.py:642
(Diff revision 1)
> + for opt in perfherder_extra_options.split():
> for suite in perfherder_data['suites']:
> if opt not in suite.get('extraOptions', []):
> suite.setdefault('extraOptions', []).append(opt)
>
> + if platform.system() != 'Linux' or 'asan' not in perfherder_extra_options.lower():
I don't understand this. Could we not just say:
if 'asan' not in perfherder_extra_options.lower():
...
?
Attachment #8984827 -
Flags: review?(jmaher) → review-
| Comment hidden (mozreview-request) |
Comment 4•7 years ago
|
||
| mozreview-review | ||
Comment on attachment 8984827 [details]
Bug 1467803 - Turn off static ctors perf tests for ASan builds
https://reviewboard.mozilla.org/r/250634/#review256972
thanks for the update
Attachment #8984827 -
Flags: review?(jmaher) → review+
Pushed by igoldan@mozilla.com:
https://hg.mozilla.org/integration/autoland/rev/f3b724976427
Turn off static ctors perf tests for ASan builds r=jmaher
Comment 6•7 years ago
|
||
| bugherder | ||
Status: NEW → RESOLVED
Closed: 7 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•