B2G Bumper Bot
a9d472d3ab
Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
...
========
https://hg.mozilla.org/integration/gaia-central/rev/8a846a13aa77
Author: Hubert Figuière <hub@figuiere.net>
Desc: Merge pull request #33985 from hfiguiere/bug1243642-remove-exception-handling
Bug 1243642 - remove the try {} catch() blocks around tests. r=justindarc
========
https://hg.mozilla.org/integration/gaia-central/rev/45b1fa388ee2
Author: Hubert Figuière <hub@figuiere.net>
Desc: Bug 1243642 - remove the try {} catch() blocks around tests.
2016-01-28 20:09:15 -08:00
Phil Ringnalda
bf0e427d44
No bug, update gaia bumper's 'current' point to what has already run on b2g-inbound
2016-01-28 19:56:45 -08:00
B2G Bumper Bot
bed96270ec
Bumping manifests a=b2g-bump
2016-01-28 20:00:45 -08:00
B2G Bumper Bot
dda454d84b
Bumping gaia.json for 1 gaia revision(s) a=gaia-bump
...
========
https://hg.mozilla.org/integration/gaia-central/rev/8b6859e3d60c
Author: Michael Henretty <michael.henretty@gmail.com>
Desc: Revert "Merge pull request #33969 from scottwu/1131497-running-build-test-js-2"
This reverts commit 9819a191640d45379eaeacf9ace353fb7d169e67, reversing
changes made to cd8f75c5d30aa85d7d1c2d0ca54a817021ab9e10.
2016-01-28 19:59:10 -08:00
Nick Fitzgerald
11edf68e4e
Bug 1240090 - Make owned copies of filenames in JS::ubi::ByFilename. r=jimb
...
This commit makes the ByFilename census counter create its own owned copies of
script filenames. If we don't do this, and the heap graph we are analyzing is
the live heap, then the ScriptSource (from which we get the filename) could
disappear out from under us. We can't use a ScriptSourceHolder to keep the
ScriptSource alive because we might be analyzing an offline heap snapshot, in
which case there is no ScriptSource at all.
2016-01-28 16:33:00 -05:00
B2G Bumper Bot
8176b865e9
Bumping manifests a=b2g-bump
2016-01-28 19:50:42 -08:00
B2G Bumper Bot
e56d9a2ec9
Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
...
========
https://hg.mozilla.org/integration/gaia-central/rev/bdadc6830205
Author: Tilman Kamp <tilman@mozilla.com>
Desc: Merge pull request #33960 from tilmankamp/u1180238
Bug 1180238 - Re-enabling test on master R=mhenretty
========
https://hg.mozilla.org/integration/gaia-central/rev/2a1ee01a2a3e
Author: Tilman Kamp <tilmankamp@posteo.de>
Desc: Bug 1180238 - Re-enabling test on master R=mhenretty
2016-01-28 19:49:08 -08:00
B2G Bumper Bot
04fbac0d1d
Bumping manifests a=b2g-bump
2016-01-28 19:25:46 -08:00
B2G Bumper Bot
3d8fc87119
Bumping gaia.json for 4 gaia revision(s) a=gaia-bump
...
========
https://hg.mozilla.org/integration/gaia-central/rev/10992e6fa75f
Author: isabelrios <isabelrios@gmail.com>
Desc: Merge pull request #33913 from isabelrios/save_contact_PC_pattern
Bug 1219653 - Test to add a contact from dialer in JavaScript
========
https://hg.mozilla.org/integration/gaia-central/rev/f0563c08492d
Author: Isabel Rios Escobar <irios@MacBook-Pro-de-Isabel.local>
Desc: Bug 1219653 - Add contact from dialer
changes suggested
fixing the removed files
Fixing reviewer's comments
one more thing to change
nits fixed
========
https://hg.mozilla.org/integration/gaia-central/rev/40dc9af546a9
Author: Yi-Fan Liao <yliao@mozilla.com>
Desc: Merge pull request #33894 from begeeben/1240421_replace_error_browser_dialog
Bug 1240421 - Replace error_browser dialog with window.alert, r=dhuang
========
https://hg.mozilla.org/integration/gaia-central/rev/09cc7a4d5a8a
Author: Yi-Fan Liao <begeeben@gmail.com>
Desc: Bug 1240421 - Replace error_browser dialog with window.alert
2016-01-28 19:24:12 -08:00
Chris H-C
7753e3cb62
Bug 1238121
- Properly guard Profiler's RAII classes. r=BenWa, f=mystor
...
We can't use GuardObjects easily on the printf variant as va_list args and default args can't play together.
2016-01-28 09:19:00 -05:00
Anthony Zhang
542dcdc163
Bug 1242777 - Expose child process hang stats to Javascript. r=chutten
...
What it does:
Adds a new function, TelemetrySession.getChildThreadHangs(), which returns a promise resolving to an array of threadHangStats [1], one per process.
Note that processes that spawn or die while the function's promise is created but not resolved may be excluded from the final result.
How we do this:
1. Parent sends a MESSAGE_TELEMETRY_GET_CHILD_PAYLOAD message to each child, promising the results of these messages.
2. Child processes respond to parent with a MESSAGE_TELEMETRY_THREAD_HANGS, which contains BHR stats in the payload.
3. Parent combines all the child responses together and resolves the promise.
Plus a bunch of synchronization stuff and handling of edge cases since the number of child processes can change at any time.
Also, there is a 200ms timeout since we can't handle all of these cases. Specifically, when a child dies without responding, after all other child processes have responded.
Why we do this:
* We can technically get thread hang stats by retrieving Telemetry pings (see requestChildPayloads() in TelemetrySession for details), but this is very slow and can only be done for one process at a time.
* TelemetrySession is responsible for various Telemetry IPC-related tasks, and so is a natural place to expose this function (i.e., the function blends in well with the rest of the API).
* Statuser [2] uses this for quickly obtaining child process BHR stats. This allows us to get realtime hang monitoring for child processes.
[1]: https://dxr.mozilla.org/mozilla-central/source/toolkit/components/telemetry/nsITelemetry.idl#146
[2]: https://github.com/chutten/statuser
2016-01-28 13:52:07 -05:00
Andrew McCreight
44a79655ce
Bug 1243113 - Enable test_blob_worker_xhr_* tests on e10s Windows. r=khuey
2016-01-28 12:33:00 -05:00
sajitk
ea42172bea
Bug 1219482 - Replace PRLogModuleInfo with LazyLogModule in uriloader subdirectory. r=erahm
2016-01-28 10:38:00 -05:00
sajitk
3e6850097a
Bug 1219482 - Replace PRLogModuleInfo with LazyLogModule in toolkit subdirectory. r=erahm
2016-01-28 10:37:00 -05:00
sajitk
aa19e7110d
Bug 1219482 - Replace PRLogModuleInfo with LazyLogModule in security subdirectory. r=froydnj
2016-01-28 10:36:00 -05:00
sajitk
faa12dafad
Bug 1219482 - Replace PRLogModuleInfo with LazyLogModule in various files. r=bsmedberg
2016-01-28 10:35:00 -05:00
Morris Tseng
f0cdeca967
Bug 1242347 - Allow unsized internal format when generate mipmap. r=jgilbert
2016-01-29 10:58:05 +08:00
B2G Bumper Bot
5cbd8cfd1b
Bumping manifests a=b2g-bump
2016-01-28 19:10:48 -08:00
B2G Bumper Bot
fefa8fbb85
Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
...
========
https://hg.mozilla.org/integration/gaia-central/rev/cd1a851bdb89
Author: Yi-Fan Liao <yliao@mozilla.com>
Desc: Merge pull request #33956 from begeeben/1241007_organize
Bug 1241007 - Organize and revise l10n strings according to UX spec, r=dhuang
========
https://hg.mozilla.org/integration/gaia-central/rev/bcb8324fc44b
Author: yifan <yliao@mozilla.com>
Desc: Bug 1241007 - Organize and revise l10n strings according to UX spec
2016-01-28 19:09:06 -08:00
B2G Bumper Bot
eac561b0e5
Bumping manifests a=b2g-bump
2016-01-28 19:02:42 -08:00
B2G Bumper Bot
3641039b30
Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
...
========
https://hg.mozilla.org/integration/gaia-central/rev/38b847657ac4
Author: Scott Wu <scottwu@mozilla.com>
Desc: Merge pull request #33969 from scottwu/1131497-running-build-test-js-2
Bug 1131497 - Converted build test scripts to run on node.js, r=rickychien
========
https://hg.mozilla.org/integration/gaia-central/rev/4f001892cead
Author: Scott Wu <scottcwwu@gmail.com>
Desc: Bug 1131497 - Converted build test scripts to run on node.js
2016-01-28 19:02:25 -08:00
Nick Fitzgerald
0548b4942e
Bug 1242691 - Merge overlapping SlotsEdges in the store buffer. r=terrence
...
Frequently, the mutator will modify nearly the same elements of an object
repeatedly. However, because the set of elements aren't exactly the same, the
single item buffer in front of MonoTypeBuffer can't de-duplicate these
edges. For example, in one CodeMirror test case, we would add 245 SlotsEdges
entries for almost the same 50,000 elements in an object, causing us to trace
these same 50,000 elements 245 times!
This patch makes `js::gc::StoreBuffer::putSlot` check to see if the new range is
overlapping with the last range added, and if so, merge the ranges rather than
adding partially duplicated elements into the store buffer.
This gives a 1000 point increase on Octane's pdf.js subsuite locally. The
CodeMirror test case mentioned above goes from ~10 seconds execution time to
~1.5 seconds, with the max minor gc pause dropping from up to 40 milliseconds,
down to 4 milliseconds.
2016-01-28 15:52:00 -05:00
B2G Bumper Bot
7545eace0e
Bumping manifests a=b2g-bump
2016-01-28 18:50:43 -08:00
B2G Bumper Bot
9470e38683
Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
...
========
https://hg.mozilla.org/integration/gaia-central/rev/3b40b8c03859
Author: Zibi Braniecki <zibi@braniecki.net>
Desc: Merge pull request #33964 from zbraniecki/1200078-refactor-l10n-in-browser
Bug 1200078 - [browser] Remove deprecated mozL10n.get. r=yifan
========
https://hg.mozilla.org/integration/gaia-central/rev/1f5193e17b9e
Author: Zibi Braniecki <gandalf@mozilla.com>
Desc: Bug 1200078 - [browser] Remove deprecated mozL10n.get
2016-01-28 18:49:09 -08:00
B2G Bumper Bot
71c11c585e
Bumping manifests a=b2g-bump
2016-01-28 18:40:49 -08:00
B2G Bumper Bot
b4441a36e3
Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
...
========
https://hg.mozilla.org/integration/gaia-central/rev/a1a256db409d
Author: Yi-Fan Liao <yliao@mozilla.com>
Desc: Merge pull request #33953 from begeeben/1226504_should_turn_off_cursor_mode
Bug 1226504 - Should turn off cursor mode when displaying FTE and SmartList, r=dhuang
========
https://hg.mozilla.org/integration/gaia-central/rev/987c3663b8f8
Author: yifan <yliao@mozilla.com>
Desc: Bug 1226504 - Should turn off cursor mode when displaying FTE and SmartList
2016-01-28 18:39:07 -08:00
B2G Bumper Bot
e954c0a4be
Bumping manifests a=b2g-bump
2016-01-28 18:30:41 -08:00
B2G Bumper Bot
e1969edfa6
Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
...
========
https://hg.mozilla.org/integration/gaia-central/rev/ed7288782a2f
Author: Aleh Zasypkin <aleh.zasypkin@gmail.com>
Desc: Merge pull request #33900 from azasypkin/bug-1236248-fix-intermittent-new-activity-tests
Bug 1236248 - feed mozSetMessageHandler with the handler that is created in the main window. r=julien
========
https://hg.mozilla.org/integration/gaia-central/rev/816f0b237834
Author: Aleh Zasypkin <azasypkin@mozilla.com>
Desc: Bug 1236248 - feed mozSetMessageHandler with the handler that is created in the main window. r=julien
2016-01-28 18:29:07 -08:00
B2G Bumper Bot
a556f1a6e6
Bumping manifests a=b2g-bump
2016-01-28 18:20:41 -08:00
B2G Bumper Bot
96becece71
Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
...
========
https://hg.mozilla.org/integration/gaia-central/rev/785ed5fa0a66
Author: yglazko <glazko@usc.edu>
Desc: Merge pull request #33928 from yglazko/bug1241305-write-detail-test-fav-contactslist
Bug 1241305 - test contactslist favlist
========
https://hg.mozilla.org/integration/gaia-central/rev/79724880a9d3
Author: Kate Glazko <glazko@usc.edu>
Desc: bug 1241305-test-contactslist-fav-list
2016-01-28 18:19:08 -08:00
B2G Bumper Bot
b7cc91fc2a
Bumping manifests a=b2g-bump
2016-01-28 18:10:49 -08:00
B2G Bumper Bot
69da201719
Bumping gaia.json for 6 gaia revision(s) a=gaia-bump
...
========
https://hg.mozilla.org/integration/gaia-central/rev/3d4f999112fd
Author: Tilman Kamp <tilman@mozilla.com>
Desc: Merge pull request #33959 from tilmankamp/u1180236
Bug 1180236 - Accelerated swipe gesture R=mhenretty
========
https://hg.mozilla.org/integration/gaia-central/rev/240a7de71ab5
Author: Tilman Kamp <tilmankamp@posteo.de>
Desc: Bug 1180236 - Accelerated swipe gesture R=mhenretty
========
https://hg.mozilla.org/integration/gaia-central/rev/8ab63fadefdf
Author: Eli Perelman <eli@eliperelman.com>
Desc: Merge pull request #33962 from mozilla-b2g/revert-33945-1131497-running-build-test-js-2
Revert "Bug 1131497 - Converted build test scripts to run on node.js"
========
https://hg.mozilla.org/integration/gaia-central/rev/b77db64f516e
Author: Eli Perelman <eli@eliperelman.com>
Desc: Revert "Bug 1131497 - Converted build test scripts to run on node.js"
========
https://hg.mozilla.org/integration/gaia-central/rev/bfe1369e9aa4
Author: Julien Wajsberg <felash@gmail.com>
Desc: Merge pull request #33948 from julienw/1165765-fix-intermittent-failure
Bug 1165765 - Fix an intermittent marionette test by properly deletin…
========
https://hg.mozilla.org/integration/gaia-central/rev/084fe9230f12
Author: Julien Wajsberg <felash@gmail.com>
Desc: Bug 1165765 - Fix an intermittent marionette test by properly deleting recipients r=azasypkin
2016-01-28 18:09:08 -08:00
Shu-yu Guo
19b5d46c9d
Bug 1242111 - Fix references to oomTest. (r=me)
2016-01-28 18:08:11 -08:00
Nicholas Nethercote
c3a943c434
Bug 1187151 (part 12) - Replace nsBaseHashtable::Enumerate() calls in dom/ with iterators. r=khuey.
2016-01-27 16:05:00 -08:00
Nicholas Nethercote
7dfcf5c97c
Bug 1187151 (part 11) - Replace nsBaseHashtable::Enumerate() calls in dom/ with iterators. r=khuey.
2016-01-27 16:05:00 -08:00
Nicholas Nethercote
6a49d4e5cd
Bug 1187151 (part 10) - Replace nsBaseHashtable::Enumerate() calls in dom/ with iterators. r=khuey.
2016-01-27 16:04:59 -08:00
Nicholas Nethercote
7445bc5da3
Bug 1187151 (part 9) - Replace nsBaseHashtable::Enumerate() calls in dom/ with iterators. r=khuey.
2016-01-27 16:04:59 -08:00
Nicholas Nethercote
b5ba819c41
Bug 1187151 (part 8) - Replace nsBaseHashtable::Enumerate() calls in dom/ with iterators. r=khuey.
2016-01-27 16:04:59 -08:00
Nicholas Nethercote
d1bac69cc6
Bug 1187151 (part 7) - Replace nsBaseHashtable::Enumerate() calls in dom/ with iterators. r=khuey.
2016-01-27 16:04:59 -08:00
Nicholas Nethercote
787bd5ff7b
Bug 1187151 (part 6) - Replace nsBaseHashtable::Enumerate() calls in dom/ with iterators. r=khuey.
2016-01-27 16:04:59 -08:00
B2G Bumper Bot
21f473cc9f
Bumping manifests a=b2g-bump
2016-01-28 18:00:43 -08:00
B2G Bumper Bot
8eff7b00e0
Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
...
========
https://hg.mozilla.org/integration/gaia-central/rev/40fb5c57db97
Author: albertopq <albert.pastor@gmail.com>
Desc: Merge pull request #33958 from albertopq/1233529-pin-intermitent2
Bug 1233529 - (followup) Intermittent: Increasing search time for pin dialog r=mhenretty
========
https://hg.mozilla.org/integration/gaia-central/rev/ca3e7e2a66ac
Author: albertopq <apastor@mozilla.com>
Desc: Bug 1233529 - Intermittent: Increasing search time for pin dialog
2016-01-28 17:59:08 -08:00
Wes Kocher
c2d6341f65
Backed out changeset 6ad8793921f4 (bug 1238648) for a bad rebase/merge, breaking media tests
2016-01-28 17:53:30 -08:00
B2G Bumper Bot
328fa6b6bb
Bumping manifests a=b2g-bump
2016-01-28 17:52:42 -08:00
B2G Bumper Bot
d25b2369b0
Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
...
========
https://hg.mozilla.org/integration/gaia-central/rev/32fca23c2828
Author: Scott Wu <scottwu@mozilla.com>
Desc: Merge pull request #33945 from scottwu/1131497-running-build-test-js-2
Bug 1131497 - Converted build test scripts to run on node.js, r=rickychien
========
https://hg.mozilla.org/integration/gaia-central/rev/9c9b44d289e1
Author: Scott Wu <scottcwwu@gmail.com>
Desc: Bug 1131497 - Converted build test scripts to run on node.js
2016-01-28 17:52:25 -08:00
Wes Kocher
644a0a8c9b
Merge m-c to inbound, a=merge
2016-01-28 17:50:18 -08:00
B2G Bumper Bot
4d6f015675
Bumping manifests a=b2g-bump
2016-01-28 17:44:04 -08:00
B2G Bumper Bot
11c3c833fc
Bumping gaia.json for 2 gaia revision(s) a=gaia-bump
...
========
https://hg.mozilla.org/integration/gaia-central/rev/843c0e69bc98
Author: Fernando Jiménez Moreno <ferjmoreno@gmail.com>
Desc: Merge pull request #33941 from ferjm/bug1239546.nokeyfetchtoken.patch
Bug 1239546 - Sync error No keyFetchToken after OTA. r=michielbdejong…
========
https://hg.mozilla.org/integration/gaia-central/rev/3faef0e20f2d
Author: Fernando Jiménez Moreno <ferjmoreno@gmail.com>
Desc: Bug 1239546 - Sync error No keyFetchToken after OTA. r=michielbdejong,yzen
2016-01-28 17:43:46 -08:00
Brian Birtles
aa05b8442e
Bug 1096773 part 4 - Add tests for Animatable.animate(); r=bz
2016-01-29 12:37:52 +11:00
Brian Birtles
68bba734fd
Bug 1096773 part 3 - Implement Animatable.animate(); r=bz
2016-01-29 12:37:52 +11:00