Closed
Bug 791146
Opened 13 years ago
Closed 13 years ago
getBuildConfiguration() returns the wrong value for gczeal and threadsafe
Categories
(Core :: JavaScript Engine, defect)
Core
JavaScript Engine
Tracking
()
VERIFIED
FIXED
mozilla18
Tracking | Status | |
---|---|---|
firefox15 | --- | unaffected |
firefox16 | --- | unaffected |
firefox17 | --- | fixed |
firefox18 | --- | verified |
firefox-esr10 | --- | unaffected |
People
(Reporter: gkw, Assigned: gkw)
References
Details
(Keywords: regression, verifyme)
Attachments
(1 file)
1.65 KB,
patch
|
gkw
:
review+
lsblakk
:
approval-mozilla-aurora+
|
Details | Diff | Splinter Review |
getBuildConfiguration returns the wrong value for threadsafe / gczeal, because they are both named has-gczeal. Thus,
getBuildConfiguration()["has-gczeal"]
returns false even though it is true in a build with gczeal enabled but threadsafety disabled.
The attached patch fixes it to "threadsafe", and removes a duplicated JSGC_ROOT_ANALYSIS ifdef block. The patch was r=sfink over irc.
Attachment #661077 -
Flags: review+
![]() |
Assignee | |
Updated•13 years ago
|
Summary: getBuildConfiguration returns the wrong value for threadsafe → getBuildConfiguration() returns the wrong value for gczeal and threadsafe
![]() |
Assignee | |
Comment 1•13 years ago
|
||
Status: NEW → ASSIGNED
status-firefox-esr10:
--- → unaffected
status-firefox15:
--- → unaffected
status-firefox16:
--- → unaffected
status-firefox17:
--- → affected
status-firefox18:
--- → fixed
Target Milestone: --- → mozilla18
Comment 2•13 years ago
|
||
Status: ASSIGNED → RESOLVED
Closed: 13 years ago
Resolution: --- → FIXED
![]() |
Assignee | |
Comment 3•13 years ago
|
||
In m-c changeset 9fff2012b66c 64-bit debug shell,
js> getBuildConfiguration()
({debug:true, dtrace:false, e4x:true, 'exact-rooting':false, 'generational-gc':false, 'has-ctypes':false, 'has-gczeal':true, 'incremental-gc':true, methodjit:true, 'more-deterministic':true, 'oom-backtraces':false, profiling:false, 'rooting-analysis':false, threadsafe:false, 'trace-jscalls-api':false, valgrind:true})
js> getBuildConfiguration()['threadsafe']
false
js> getBuildConfiguration()['rooting-analysis']
false
js> getBuildConfiguration()['has-gczeal']
true
js>
gives the correct values. Thus, verified.
Status: RESOLVED → VERIFIED
![]() |
Assignee | |
Comment 4•13 years ago
|
||
Comment on attachment 661077 [details] [diff] [review]
patch
[Approval Request Comment]
Bug caused by (feature/regressing bug #): bug 776632 and bug 776732
User impact if declined: wrong output in Firefox 17 js shell
Testing completed (on m-c, etc.): verified fixed
Risk to taking this patch (and alternatives if risky): no risk, shell only
String or UUID changes made by this patch: none
Attachment #661077 -
Flags: approval-mozilla-aurora?
Updated•13 years ago
|
Attachment #661077 -
Flags: approval-mozilla-aurora? → approval-mozilla-aurora+
![]() |
Assignee | |
Comment 5•13 years ago
|
||
You need to log in
before you can comment on or make changes to this bug.
Description
•