Closed
Bug 732842
Opened 14 years ago
Closed 14 years ago
Add assertions for memory reports
Categories
(Toolkit :: about:memory, defect)
Toolkit
about:memory
Tracking
()
RESOLVED
FIXED
mozilla14
People
(Reporter: n.nethercote, Assigned: n.nethercote)
References
Details
Attachments
(1 file)
|
24.53 KB,
patch
|
justin.lebar+bug
:
review+
|
Details | Diff | Splinter Review |
We should detect illegal combinations of values (kind, units, etc) in memory reports within aboutMemory.js.
| Assignee | ||
Comment 1•14 years ago
|
||
The much-anticipated patch :) If you're wondering why I changed the
other6-danger<script>window.alert(1)</script> reports in the tests, it's for
two reasons:
- The '/' in the name was triggering an assertion, because we don't allow
slashes in "other" reports.
- Now that aboutMemory.js doesn't use innerHTML to create its DOM, the
security aspect isn't relevant any more.
Attachment #606422 -
Flags: review?(justin.lebar+bug)
Comment 2•14 years ago
|
||
\o/
>+ function handleException(aKind, aE)
>+ {
>+ // There are two exception cases that must be distinguished here.
>+ //
>+ // - We want to halt proceedings on exceptions thrown within this file
>+ // (i.e. assertion failures in handleReport); such exceptions contain
>+ // gAssertionFailureMsgPrefix in their string representation.
>+ //
>+ // - We want to continue on when faced with exceptions thrown outside this
>+ // file (i.e. in collectReports).
>+
>+ let str = aE.toString();
>+ if (str.search(gAssertionFailureMsgPrefix) >= 0) {
>+ throw(aE);
>+ } else {
>+ debug("Bad memory " + aKind + " '" + name + "': " + aE);
>+ }
>+ }
So this error message will look like
Bad memory 2 'heap-allocated': bad amount
? I guess that's OK, but I'm not a fan of "Bad memory". Perhaps "Error" or
"Bad memory reporter"?
>+ * Reporters in this category must have kind HEAP or NONHEAP, units BYTES,
>+ * and a description this is a sentence (i.e. starts with a capital letter
>+ * and ends with a period, or similar).
a description /that/ is a sentence.
>+ * contain '/' separators, kind OTHER, and a description this is a
>+ * sentence.
/that/
Updated•14 years ago
|
Attachment #606422 -
Flags: review?(justin.lebar+bug) → review+
| Assignee | ||
Comment 3•14 years ago
|
||
> >+ debug("Bad memory " + aKind + " '" + name + "': " + aE);
>
> So this error message will look like
>
> Bad memory 2 'heap-allocated': bad amount
>
> ? I guess that's OK, but I'm not a fan of "Bad memory". Perhaps "Error" or
> "Bad memory reporter"?
If you look at the calling context, |aKind| is either "reporter" or "multi-reporter". Overloading "kind" like this is confusing... I'll change the variable name to something else.
| Assignee | ||
Comment 4•14 years ago
|
||
Comment 5•14 years ago
|
||
Status: ASSIGNED → RESOLVED
Closed: 14 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla14
You need to log in
before you can comment on or make changes to this bug.
Description
•