View gist:041cd0047d5d96900a47
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
~/mozilla/mozilla-central/tree> ./mach talos-test tp5o | |
Running Talos test suite tp5o | |
0:00.10 /usr/local/bin/hg pull -r production -u | |
13:46:32 INFO - MultiFileLogger online at 20150717 13:46:32 in /Users/bgirard/mozilla/mozilla-central/tree | |
13:46:32 INFO - Run as ./mach talos-test tp5o | |
13:46:33 INFO - {'extra_options': {'android': ['--apkPath=%(apk_path)s']}, | |
13:46:33 INFO - 'global': {'talos_repo': 'https://hg.mozilla.org/users/b56girard_gmail.com/e10s-talos', | |
13:46:33 INFO - 'talos_revision': 'tip'}, | |
13:46:33 INFO - 'mobile-suites': {'remote-tp4m_nochrome': {'tests': ['tp4m']}, | |
13:46:33 INFO - 'remote-trobocheck2': {'talos_options': ['--fennecIDs', |
View gist:8ea02bfb2377b063939c
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mozilla@mozgfx-rr-orange-hunter-1:~/mozilla-central/tree$ ./run.sh | |
0:00.33 /usr/bin/make -C . -j2 -s -w reftest | |
make: Entering directory `/home/mozilla/mozilla-central/tree/obj-x86_64-unknown-linux-gnu' | |
Checking for orphan ssltunnel processes... | |
Checking for orphan xpcshell processes... | |
REFTEST INFO | runreftest.py | Running tests: start. | |
[Task] creating new task group 20178 (real tgid:20178) | |
[Task] going into blocking waitpid(20178) ... | |
[Task] waitpid(20178) returns 20178; status 0x137f |
View gist:2b7ceaf9e2f4a5ccc3b6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
E/Finsky ( 2676): [1] 2.onErrorResponse: Failed to send 1 events because of [com.android.volley.TimeoutError] | |
D/Volley ( 2676): [1] Request.finish: 14382 ms: [ ] https://android.clients.google.com/fdfe/log 0xe8d195d1 NORMAL 97 | |
D/Finsky ( 2676): [1] 2.onErrorResponse: Received VolleyError 927 (null) | |
D/Finsky ( 2676): [1] InstallerTask.cancelCleanup: Cancel running installation of com.zenfri.clandestine | |
D/Finsky ( 2676): [1] PackageInstallerImpl.cancelSession: Canceling session 1863366333 for com.zenfri.clandestine | |
D/Volley ( 2676): [1] Request.finish: 14416 ms: [ ] https://android.clients.google.com/fdfe/delivery?doc=com.zenfri.clandestine&ot=1&st=EMLC5K0FGVyPmlBIbtVB%0A&vc=10106 0xe8d195d1 NORMAL 98 |
View gist:e707e9b97556b500d9ae
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(rr) break 'mozilla::dom::CanvasRenderingContext2D::DrawWindow(nsGlobalWindow&, double, double, double, double, nsAString_internal const&, unsigned int, mozilla::ErrorResult&)' | |
cBreakpoint 1 at 0x7f1d2de78f00: file /home/bgirard/mozilla-central/tree/dom/canvas/CanvasRenderingContext2D.cpp, line 4814. | |
(rr) cont | |
Continuing. | |
REFTEST TEST-LOAD | file:///home/bgirard/mozilla-central/tree/image/test/reftest/bmp/bmpsuite/b/wrapper.html?badpalettesize.bmp | 417 / 13172 (3%) | |
++DOMWINDOW == 129 (0x7f1cfdd6f000) [pid = 28496] [serial = 1032] [outer = 0x7f1d19f9a400] | |
Breakpoint 1, mozilla::dom::CanvasRenderingContext2D::DrawWindow (this=0x7f1cf9956800, window=..., x=0, y=0, w=800, h=1000, bgColor=..., flags=13, error=...) at /home/bgirard/mozilla-central/tree/dom/canvas/CanvasRenderingContext2D.cpp:4814 | |
4814 { | |
(rr) break 'PresShell::RenderDocument(nsRect const&, unsigned int, unsigned int, gfxContext*)' |
View rr-curved-border-background-nogap.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
0:00.17 Checking for orphan ssltunnel processes... | |
0:00.22 Checking for orphan xpcshell processes... | |
0:00.29 REFTEST INFO | runreftest.py | Running tests: start. | |
0:00.29 [INFO check_performance_settings()] cpu0's frequency governor is 'performance' | |
0:00.29 [INFO record()] Start recording... | |
0:00.31 [WARN handle_signal_event() errno: 0 'Success'] Dropping SIGSTKFLT because it can't be delivered yet | |
0:00.31 [WARN handle_signal_event() errno: 0 'Success'] Dropping SIGSTKFLT because it can't be delivered yet | |
0:00.31 [WARN handle_signal_event() errno: 0 'Success'] Dropping SIGSTKFLT because it can't be delivered yet | |
0:00.31 [WARN handle_signal_event() errno: 0 'Success'] Dropping SIGSTKFLT because it can't be delivered yet |
View gist:4cd7a2f02f4173a226853bb8b512d09f
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var MESSAGE = | |
'Using the delete operator on a property will cause the shape of ' + | |
'the object to change. This will lead to JS engine to de-optimize ' + | |
'read and writes to this object.'; | |
// For now this rule is very pessimistic to limit false positives. It only | |
// covers case of form: delete this.<identifier>; | |
module.exports = function rule(context) { | |
return { | |
UnaryExpression: function(node) { |