Closed
Bug 1088252
Opened 11 years ago
Closed 11 years ago
Remove useSpecialPowers variable from Talos
Categories
(Testing :: Talos, defect)
Testing
Talos
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: jmaher, Assigned: mykromo, Mentored)
References
Details
(Whiteboard: [good first bug][lang=python])
Attachments
(1 file, 3 obsolete files)
|
4.69 KB,
patch
|
jmaher
:
review+
|
Details | Diff | Splinter Review |
In the talos project: https://wiki.mozilla.org/Buildbot/Talos we have a variable defined for the logging module, but we are not really using it.
this is in:
http://hg.mozilla.org/build/talos/file/tip/talos/scripts/MozillaFileLogger.js
we also have a reference to the variable here:
http://hg.mozilla.org/build/talos/file/tip/talos/page_load_test/quit.js
please clone the repository, grep for useSpecialPowers and remove all instances of it!
| Reporter | ||
Updated•11 years ago
|
Mentor: jmaher, wlachance
| Assignee | ||
Comment 1•11 years ago
|
||
BUG 1088252 - Remove variable 'useSpecialPowers' in Talos.
| Reporter | ||
Comment 2•11 years ago
|
||
Comment on attachment 8511999 [details] [diff] [review]
BUG 1088252 - Remove variable useSpecialPowers in Talos
Review of attachment 8511999 [details] [diff] [review]:
-----------------------------------------------------------------
a few things, mostly unindenting stuff that removed a if/try condition block.
::: talos/page_load_test/a11y/a11y.js
@@ +73,4 @@
> // Walk accessible tree of the given identifier to ensure tree creation
> function ensureAccessibleTree(aAccOrElmOrID)
> {
> + oacc = getAccessible(aAccOrElmOrID);
unindent this, and fix the typo of oacc to be acc :)
::: talos/scripts/MozillaFileLogger.js
@@ +3,3 @@
> */
>
> // Detect if we are on older branches that don't have specialpowers enabled talos available
please remove this line as well
::: talos/startup_test/tspaint_test.html
@@ +22,5 @@
> netscape.security.PrivilegeManager.enablePrivilege('UniversalXPConnect');
> var startupInfo = Components.classes['@mozilla.org/toolkit/app-startup;1'].
> getService(Ci.nsIAppStartup).getStartupInfo();
> startupTime = now - startupInfo['process'];
> } catch(ex) { dumpLog(ex + '\n'); }
please unindent this block of code
@@ +47,5 @@
> try {
> netscape.security.PrivilegeManager.enablePrivilege('UniversalXPConnect');
> var consoleService = Components.classes['@mozilla.org/consoleservice;1'].getService(Components.interfaces.nsIConsoleService);
> consoleService.getMessageArray(messages, {});
> } catch(ex) { dumpLog(ex + '\n'); }
please unindent this block of code
Attachment #8511999 -
Flags: review-
| Assignee | ||
Comment 3•11 years ago
|
||
| Reporter | ||
Comment 4•11 years ago
|
||
Comment on attachment 8512013 [details] [diff] [review]
BUG 1088252 - Remove useSpecialPowers variable from Talos
Review of attachment 8512013 [details] [diff] [review]:
-----------------------------------------------------------------
please merge the two patches and fix the trailing whitespace.
::: talos/startup_test/tspaint_test.html
@@ +24,3 @@
> getService(Ci.nsIAppStartup).getStartupInfo();
> + startupTime = now - startupInfo['process'];
> + } catch(ex) {
nit: please remove the whitespace at the end of this line and the one below it.
@@ +49,5 @@
> + try {
> + netscape.security.PrivilegeManager.enablePrivilege('UniversalXPConnect');
> + var consoleService = Components.classes['@mozilla.org/consoleservice;1'].getService(Components.interfaces.nsIConsoleService);
> + consoleService.getMessageArray(messages, {});
> + } catch(ex) {
nit: please remove the whitespace added at the end of this line and the next.
Attachment #8512013 -
Flags: review+
| Assignee | ||
Comment 5•11 years ago
|
||
Attachment #8511999 -
Attachment is obsolete: true
Attachment #8512013 -
Attachment is obsolete: true
| Assignee | ||
Comment 6•11 years ago
|
||
Attachment #8512028 -
Attachment is obsolete: true
| Reporter | ||
Comment 7•11 years ago
|
||
Comment on attachment 8512035 [details] [diff] [review]
Remove whitespaces from previous patch.
Review of attachment 8512035 [details] [diff] [review]:
-----------------------------------------------------------------
awesome!
Attachment #8512035 -
Flags: review+
| Reporter | ||
Comment 8•11 years ago
|
||
| Reporter | ||
Updated•11 years ago
|
Assignee: nobody → mykromo
Status: NEW → RESOLVED
Closed: 11 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•