Closed
Bug 1303277
Opened 8 years ago
Closed 8 years ago
Adjust the refresh driver warning threshold in function of whether valgrind is running rather than just the build target
Categories
(Core :: Graphics, defect)
Core
Graphics
Tracking
()
RESOLVED
FIXED
mozilla52
Tracking | Status | |
---|---|---|
firefox52 | --- | fixed |
People
(Reporter: nical, Assigned: jseward)
References
Details
Attachments
(2 files)
1.58 KB,
patch
|
Details | Diff | Splinter Review | |
1.28 KB,
patch
|
nical
:
review+
nical
:
feedback+
|
Details | Diff | Splinter Review |
This is a followup of bug 1302713
As Julian pointed out on irc, it would make more sense to check whether valgrind is running rather than whether valgrind could be running, with a define like:
#define REFRESH_WAIT_WARNING (RUNNING_ON_VALGRIND ? 10 : 1)
Assignee | ||
Updated•8 years ago
|
Attachment #8792028 -
Flags: review?(jseward)
Assignee | ||
Comment 2•8 years ago
|
||
I found it a little difficult to follow the conditions there. Also,
ASAN and Valgrind don't work together, but the patch implies they might.
Can I propose instead the following? I find it clearer and it avoids
the need to create a new preprocessor symbol.
Assignee | ||
Updated•8 years ago
|
Attachment #8797394 -
Flags: feedback?(nical.bugzilla)
Reporter | ||
Updated•8 years ago
|
Attachment #8797394 -
Flags: feedback?(nical.bugzilla) → feedback+
Reporter | ||
Updated•8 years ago
|
Assignee: nical.bugzilla → jseward
Reporter | ||
Updated•8 years ago
|
Attachment #8797394 -
Flags: review+
Pushed by jseward@mozilla.com:
https://hg.mozilla.org/integration/mozilla-inbound/rev/e00a24772316
Adjust the refresh driver warning threshold in function of whether valgrind is running rather than just the build target. r=nical.
Comment 4•8 years ago
|
||
bugherder |
Status: NEW → RESOLVED
Closed: 8 years ago
status-firefox52:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → mozilla52
You need to log in
before you can comment on or make changes to this bug.
Description
•