243fe9c65a048abe71545e206a8a7d05088dd1af: Bug 1298968 - Add comment explaining why TOPSITES is handled outside of switch r=sebastian
Andrzej Hunt <ahunt@mozilla.com> - Tue, 06 Sep 2016 10:06:58 -0700 - rev 312860
Push
30663 by cbook@mozilla.com at Wed, 07 Sep 2016 15:12:31 +0000
Bug 1298968 - Add comment explaining why TOPSITES is handled outside of switch r=sebastian
MozReview-Commit-ID: BFvz2qTm4vL
5c231de97dec73665c04a3300f44c448fa2c2b42: Bug 1293448 - Build XPIDL files in the tup backend; r=glandium,gps
Mike Shal <mshal@mozilla.com> - Fri, 29 Jul 2016 13:43:29 -0400 - rev 312859
Push
30663 by cbook@mozilla.com at Wed, 07 Sep 2016 15:12:31 +0000
Bug 1293448 - Build XPIDL files in the tup backend; r=glandium,gps
MozReview-Commit-ID: zyojbOFLLn
34767d6a0a2382f3c46723490c122ded0c87386e: Bug 1293448 - Allow build backends to specify custom build commands; r=glandium
Mike Shal <mshal@mozilla.com> - Wed, 17 Aug 2016 23:20:51 -0400 - rev 312858
Push
30663 by cbook@mozilla.com at Wed, 07 Sep 2016 15:12:31 +0000
Bug 1293448 - Allow build backends to specify custom build commands; r=glandium
MozReview-Commit-ID: G6fICkYUDxd
3a87bca22135bb6e0faa06b4fef2715ec4d92886: Bug 1300569 - Add palette-v7 support library to build. r=ahunt
Sebastian Kaspari <s.kaspari@gmail.com> - Tue, 06 Sep 2016 08:39:16 +0200 - rev 312857
Push
30663 by cbook@mozilla.com at Wed, 07 Sep 2016 15:12:31 +0000
Bug 1300569 - Add palette-v7 support library to build. r=ahunt
MozReview-Commit-ID: F29cOyHsd8B
dd6f0732c26084b026b8fc99b2da9f801baa9107: Bug 1300163 - Add support for Android mochitests to interactive loaners, r=armenzg
Andrew Halberstadt <ahalberstadt@mozilla.com> - Fri, 02 Sep 2016 14:43:53 -0400 - rev 312856
Push
30663 by cbook@mozilla.com at Wed, 07 Sep 2016 15:12:31 +0000
Bug 1300163 - Add support for Android mochitests to interactive loaners, r=armenzg
This will allow developers to request a loaner for an Android mochitest job and then use
|mach mochitest| to run tests.
MozReview-Commit-ID: 4lsKGpizfH7
e786511a99e16ae8b861ef0ef12c94c63306fa80: Bug 1300163 - Reuse the 'e10s' value from the mozharness config on interactive loaners, r=armenzg
Andrew Halberstadt <ahalberstadt@mozilla.com> - Fri, 02 Sep 2016 14:42:36 -0400 - rev 312855
Push
30663 by cbook@mozilla.com at Wed, 07 Sep 2016 15:12:31 +0000
Bug 1300163 - Reuse the 'e10s' value from the mozharness config on interactive loaners, r=armenzg
I noticed that if you request a loaner for a non-e10s job then run mach, it will be run with e10s
enabled. The mach command should accurately reflect the type of job that got requested. This patch
grabs the 'e10s' argument from the mozharness localconfig.json and uses that.
MozReview-Commit-ID: 4lsKGpizfH7
7d4b9b9df5d2d537f1710ed6642810d99df12277: Bug 1300163 - Lazy load certain mach context attributes using the 'key' mechanism, r=armenzg
Andrew Halberstadt <ahalberstadt@mozilla.com> - Fri, 02 Sep 2016 14:35:14 -0400 - rev 312854
Push
30663 by cbook@mozilla.com at Wed, 07 Sep 2016 15:12:31 +0000
Bug 1300163 - Lazy load certain mach context attributes using the 'key' mechanism, r=armenzg
You can set attributes on a mach context by using the 'key' argument to the context_handler. Basically,
whatever gets returned by the handler when <key> is passed in, will get set (i.e cached) on the context
object for fast retrieval next time. This is a way to lazy load these attributes.
Previously I was setting functions like 'find_firefox()' on the context object, and then having the
mach_commands call that directly. But this way is much cleaner.
Now, the loaded 'mozharness_config' can be stored as an attribute on the context. Also 'find_firefox()'
is now an attribute called 'firefox_bin'.
MozReview-Commit-ID: 4lsKGpizfH7
574003ffca89a1f5e0b6bd07bcf6050b12f4f731: Bug 1300163 - Fix hidden tracebacks in mochitest runtests.py, r=armenzg
Andrew Halberstadt <ahalberstadt@mozilla.com> - Fri, 02 Sep 2016 14:39:34 -0400 - rev 312853
Push
30663 by cbook@mozilla.com at Wed, 07 Sep 2016 15:12:31 +0000
Bug 1300163 - Fix hidden tracebacks in mochitest runtests.py, r=armenzg
I had a mistake in my code that resulted in an exception being thrown when starting the
mochitest servers. However, the log just showed a timeout. It was very confusing.
After some digging, I found that there's a large try/finally block (with no except) in
runtests.py. The exception wasn't being displayed because of the finally block. This
try/finally block had an inner try/except/finally that wrapped part of the code. This
patch simply removes that inner block and dedents the 'except' clause to attach to the
original try/finally.
MozReview-Commit-ID: 4lsKGpizfH7
1b40346919cc81301f39ba13f75633f508aee717: Bug 1300163 - Add a --adbpath argument to mochitest Android to allow explicitly setting the adb binary, r=gbrown
Andrew Halberstadt <ahalberstadt@mozilla.com> - Fri, 02 Sep 2016 14:26:16 -0400 - rev 312852
Push
30663 by cbook@mozilla.com at Wed, 07 Sep 2016 15:12:31 +0000
Bug 1300163 - Add a --adbpath argument to mochitest Android to allow explicitly setting the adb binary, r=gbrown
In mozdevice, it's possible to pass in the path to the adb binary (rather than requiring it to be on the path). The
mochitest android options don't provide any means to set this however (even though the b2g options do). This patch
adds that option in.
This will be used by the mach environment on interactive loaners.
MozReview-Commit-ID: 4lsKGpizfH7
f72acbecdf93c31585d35ac4bb10f96b017479f7: Bug 1300163 - Move the Android 'stop-emulator' step to a PostScriptAction of 'run-tests', r=gbrown
Andrew Halberstadt <ahalberstadt@mozilla.com> - Fri, 02 Sep 2016 14:22:23 -0400 - rev 312851
Push
30663 by cbook@mozilla.com at Wed, 07 Sep 2016 15:12:31 +0000
Bug 1300163 - Move the Android 'stop-emulator' step to a PostScriptAction of 'run-tests', r=gbrown
Currently 'stop-emulator' is its own action in mozharness. This means that anytime the mozharness
script finishes emulators will get shutdown. Usually, this is what we want to do. But if the user passes
in --no-run-tests, then presumably they are intending to run tests at a later time for some reason.
But when they do this, the emulator will be terminated, and then running tests later no longer works.
The main place where this becomes a problem is on interactive loaners in taskcluster. This patch fixes
the problem by instead running 'stop-emulator' only after the 'run-tests' step finishes. So if
--no-run-tests is passed in, the emulator will be left open.
MozReview-Commit-ID: 4lsKGpizfH7
5ee0ea599ba3a80cc14da0dc80a235d767c8e7c3: Bug 1295565 - Don't create URIs if we don't have to. r=mayhemer
Nicholas Hurley <hurley@todesschaf.org> - Tue, 16 Aug 2016 13:41:15 -0700 - rev 312850
Push
30663 by cbook@mozilla.com at Wed, 07 Sep 2016 15:12:31 +0000
Bug 1295565 - Don't create URIs if we don't have to. r=mayhemer
MozReview-Commit-ID: 86tc52aqBH2
262bcc5637ed0c886844c23013afb53e77d8544f: Bug 1300148 - Fix handling of HPACK dynamic size update r=mcmanus
Nicholas Hurley <hurley@todesschaf.org> - Fri, 02 Sep 2016 10:50:00 -0700 - rev 312849
Push
30663 by cbook@mozilla.com at Wed, 07 Sep 2016 15:12:31 +0000
Bug 1300148 - Fix handling of HPACK dynamic size update r=mcmanus
MozReview-Commit-ID: 46n3gWvyW0P
91c2b9d5c1354ca79e5b174591dbb03b32b15bbf: Merge fx-team to central, a=merge
Wes Kocher <wkocher@mozilla.com> - Tue, 06 Sep 2016 17:34:46 -0700 - rev 312848
Push
30662 by kwierso@gmail.com at Wed, 07 Sep 2016 00:34:56 +0000
Merge fx-team to central, a=merge
37c9349b4e8167a61b08b7e119c21ea177b98942: Merge m-c to f-t
Phil Ringnalda <philringnalda@gmail.com> - Tue, 06 Sep 2016 07:37:56 -0700 - rev 312847
Push
30662 by kwierso@gmail.com at Wed, 07 Sep 2016 00:34:56 +0000
Merge m-c to f-t
97633d930c8f10ca5b8c9a7986bc390900f5970a: Bug 1300773 - Update new debugger r=me
James Long <longster@gmail.com> - Tue, 06 Sep 2016 09:54:14 -0400 - rev 312846
Push
30662 by kwierso@gmail.com at Wed, 07 Sep 2016 00:34:56 +0000
Bug 1300773 - Update new debugger r=me
e403c34977380158c098158767c990849316a9fd: Merge mozilla-central to fx-team
Carsten "Tomcat" Book <cbook@mozilla.com> - Tue, 06 Sep 2016 15:43:49 +0200 - rev 312845
Push
30662 by kwierso@gmail.com at Wed, 07 Sep 2016 00:34:56 +0000
Merge mozilla-central to fx-team
9748e79666b98653302f93b7f4d9691c35d1f7aa: Bug 1295753 - Fix console interaction with new debugger r=jlongster
Jason Laster <jlaster@mozilla.com> - Tue, 06 Sep 2016 09:34:50 -0400 - rev 312844
Push
30662 by kwierso@gmail.com at Wed, 07 Sep 2016 00:34:56 +0000
Bug 1295753 - Fix console interaction with new debugger r=jlongster
863ce9e133e8dd11916315a0d2dab8ec05de2825: Bug 1300495 - Remove UI leftovers from the pointerLock removal. r=dao
Johann Hofmann <jhofmann@mozilla.com> - Mon, 05 Sep 2016 14:38:32 +0200 - rev 312843
Push
30662 by kwierso@gmail.com at Wed, 07 Sep 2016 00:34:56 +0000
Bug 1300495 - Remove UI leftovers from the pointerLock removal. r=dao
MozReview-Commit-ID: 9ILNjTTYwbm
3ba67e3bb588f782b07af82139980800b348f1e8: Merge inbound to central, a=merge
Wes Kocher <wkocher@mozilla.com> - Tue, 06 Sep 2016 17:28:05 -0700 - rev 312842
Push
30661 by kwierso@gmail.com at Wed, 07 Sep 2016 00:28:11 +0000
Merge inbound to central, a=merge
83c6065c6f646825990b0779b9820d2da0213bd0: Backed out changeset 71b9d48efac6 (bug 1286041) for failing wpt mediasource-seek-beyond-duration.html on Linux. r=backout on a CLOSED TREE
Sebastian Hengst <archaeopteryx@coole-files.de> - Tue, 06 Sep 2016 19:08:20 +0200 - rev 312841
Push
30661 by kwierso@gmail.com at Wed, 07 Sep 2016 00:28:11 +0000
Backed out changeset 71b9d48efac6 (
bug 1286041) for failing wpt mediasource-seek-beyond-duration.html on Linux. r=backout on a CLOSED TREE