William Lachance
0bd9276583
Bug 805116 - Print more of the logcat in mobile tests;r=gbrown
2012-11-12 13:57:13 -08:00
Malini Das
111fcbbcc6
Bug 809245 - add preliminary touch support to marionette, r=jgriffin
2012-11-12 11:14:54 -05:00
Ed Morley
33ac7224f8
Bug 798220 - Disable test_xhr_timeout.html on Android for intermittent failures
2012-11-12 14:44:10 +00:00
Gregory Szorc
4979b172d8
Bug 809071 - Sleep after failure to delete profile directory; r=ted
...
This should hopefully solve the problem of IOError when deleting profile
directories.
This also cleans up the temporary code added in bug 799532.
2012-11-12 14:19:22 +00:00
Wes Kocher
8961565c5f
No bug - Update revision of jetpack code used in Firefox's test suite to pick up a test fix. r=kwierso
2012-11-11 10:21:56 -08:00
Brian Smith
5977555bd6
Bug 799009: Remove unneeded SSL-related security alerts, r=honzab, r=dao
2012-11-10 20:49:44 -08:00
Brian Smith
e75ead1bc2
backout cset 30f8e29f9cd1 due to orange
2012-11-10 19:08:26 -08:00
Brian Smith
661fa55dce
Bug 799009: Remove unneeded SSL-related security alerts, r=honzab, r=dao
...
--HG--
extra : rebase_source : b6216bf3163f63f1eb4f16901943d9f351bca2cf
2012-11-10 18:19:55 -08:00
Brian Smith
cbbae4e698
Bug 804441: Put our NSPR and NSS header wrappers before OS_INCLUDES, r=ted
...
This allows inline functions in headers to call NSPR/NSS functions without
causing linking errors.
--HG--
extra : rebase_source : f89df8a53d6e8f624c84fc3b84982c4dd92d5f38
2012-10-24 14:31:54 -07:00
Justin Lebar
ad91776365
Bug 806168 - Test for bugs 802366 and 806127. r=bent
...
These new tests are disabled on Android because the test they're replacing, test_webapp_clearBrowserData.html, was also disabled on Android, and the new tests fail in the same way as the original test.
--HG--
rename : dom/indexedDB/test/test_webapp_clearBrowserData.html => dom/indexedDB/test/webapp_clearBrowserData.js
2012-11-10 10:32:38 -08:00
Ryan VanderMeulen
3eff16d324
Backed out 12 changesets (bug 806127, bug 802366, bug 806168) for Windows build bustage.
...
--HG--
rename : dom/indexedDB/test/webapp_clearBrowserData.js => dom/indexedDB/test/test_webapp_clearBrowserData.html
2012-11-09 20:14:40 -05:00
Justin Lebar
dd5651dec8
Bug 806168 - Test for bugs 802366 and 806127. r=bent
...
These new tests are disabled on Android because the test they're replacing, test_webapp_clearBrowserData.html, was also disabled on Android, and the new tests fail in the same way as the original test.
--HG--
rename : dom/indexedDB/test/test_webapp_clearBrowserData.html => dom/indexedDB/test/webapp_clearBrowserData.js
2012-11-09 16:37:41 -08:00
Jonathan Griffin
7f5d4500b4
Bug 810421 - Add --tree arg to Marionette, r=ahal
2012-11-09 11:20:51 -08:00
Andrew Halberstadt
2c4f894c2c
Bug 810041 - Add SPPrefService message listener to B2G mochitests, r=jgriffin
2012-11-09 11:01:11 -08:00
Mounir Lamouri
a69affa1ba
Bug 737786 - 2/5 - Use a pseudo-element instead of a pseudo-class for placeholder styling. r=bz
2012-11-09 10:24:23 +00:00
Jonathan Griffin
ca8767733a
Bug 810025 - Remove noisy log messages, r=ahal
2012-11-08 14:02:52 -08:00
Ryan VanderMeulen
6f347249b9
Backout 53d5080a6749 (bug 809437) for b2g mochitest orange.
...
CLOSED TREE
2012-11-08 17:25:53 -05:00
David Burns
646fb9861a
Bug 801733: Updating isElementDisplayed Atom to handle hiding elements via transforms; r=jgriffin
2012-11-08 20:58:17 +00:00
David Burns
276bd9c9bc
Bug 801733: Adding a whole bunch of visibility tests for Marionette; r=jgriffin
2012-11-08 20:56:48 +00:00
Andrew Halberstadt
b5d23d9431
Bug 809437 - Copy gecko files to /data/local prior to copying them to /system/b2g, r=jgriffin
2012-11-08 11:59:46 -08:00
David Chan
df0b99ecc4
Bug 808734 - Fix permissions expansion and add unit test. r=ddahl, r=gwagner
2012-11-06 15:52:13 -08:00
Ryan VanderMeulen
81d70b099b
Backout b9ec1725a5e2 (bug 809437) for frequent b2g bustage.
2012-11-07 20:58:14 -05:00
Andrew Halberstadt
650dcd50a5
Bug 809437 - Stop b2g process before installing gecko into an emulator, r=jgriffin
2012-11-07 15:55:01 -08:00
Andrew Halberstadt
158df0c8b5
Bug 809437 - Ensure b2g process has fully stopped before restarting it when installing gecko into an emulator, r=jgriffin
2012-11-07 10:15:17 -08:00
Ehsan Akhgari
9d0bbc706e
Merge mozilla-central into mozilla-inbound
2012-11-06 20:16:41 -05:00
Gregory Szorc
262077ed01
Bug 808336 - Part 1: Refactor mach command handler management; r=jhammel
...
Previously we were tighly coupled with MozbuildObject. This was not in
the spirit of mach being a generic tool. Now, instead of passing multiple
arguments to __init__ of the class providing the mach command we either
pass 0 or 1. The number of arguments is detected when processing the
@CommandProvider decorator. The optional argument is a named tuple
containing mach run-time state.
Capturing of mach command provider information is now captured in a
class (as opposed to an anoymous tuple). We also capture these in a rich
data structure which is passed as part of the run-time data to the
command provider class. This allows mach commands to inspect the mach
environment.
Mach decorators have been moved to mach.decorators. mach.base is
reserved for generic mach data/container classes.
Existing mach command classes derived from MozbuildObject have been
replaced with either object or mozbuild.base.MachCommandBase. This
latter class translates the mach context instance passed to __init__
into the constructor arguments for MozbuildObject.__init__.
Support for registering function handlers with mach has been removed.
All handlers must be inside classes.
--HG--
rename : python/mach/mach/base.py => python/mach/mach/decorators.py
2012-11-06 16:57:41 -08:00
Phil Ringnalda
f4dc89e4a9
No bug - Update revision of Jetpack code used in Firefox to fix two tests. r=kwierso
2012-11-05 23:08:40 -08:00
Andrew Halberstadt
7441301341
Bug 798580 - Run mochitests from within test-container app's oop iframe, r=jgriffin
2012-10-31 09:37:22 -04:00
William Lachance
4045caaf82
Bug 808719 - Mirror over mozdevice 0.14;r=jmaher
2012-11-05 15:18:54 -08:00
Ed Morley
3fdc7e3575
Bug 536603 - Disable test_css_cross_domain.html on Android for too many intermittent failures
2012-11-06 22:26:56 +00:00
Andrew Halberstadt
98925132a0
Bug 800102 - Retry adb push if it times out while installing gecko, r=jgriffin
2012-11-06 13:06:38 -08:00
David Rajchenbach-Teller
fbba29d672
Bug 808428 - Testing that OS.File can be called from xpcshell. r=nfroyd
...
--HG--
extra : rebase_source : 6dfc9107c4ff2453b47a3df528ca8d0037b91cf8
2012-11-05 07:59:00 -08:00
Jonathan Griffin
3856910e76
Bug 804366 - Include test names in failure messages v0.3, r=ahal
2012-10-31 15:36:57 -07:00
Malini Das
f5e53b3ed9
Bug 801703 - enable switching to nested OOP frame, r=jgriffin, a=NPOTB
2012-11-06 10:54:09 -08:00
Andrew Halberstadt
d6598f5924
Bug 808783 - Disable failing Mn tests, r=jgriffin
2012-11-06 09:17:39 -08:00
Geoff Brown
dad33bcf92
Bug 808725 - Pass -m and -n to xpcshell when running xpcshell-tests-remote; r=jmaher
2012-11-06 04:44:02 -07:00
Geoff Brown
c3efce59a3
Bug 808728 - Log remote environment vars correctly; r=jmaher
2012-11-06 04:43:58 -07:00
Ed Morley
5ebbf2c88a
Bug 808545 - Tweak the exception message for runxpcshelltests.py profile cleanup failures; r=gps
2012-11-05 18:29:20 +00:00
Ed Morley
1536cfef6c
Bug 808417 - Make runTests() exception reporting consistent across test harnesses; r=jmaher
2012-11-05 13:03:55 +00:00
Jonathan Griffin
b2b4aaae0b
Bug 808441 - Enable dom/base mochitests for B2G, a=test-only
2012-11-04 15:24:53 -08:00
Philipp von Weitershausen
deea79d04c
Bug 807478 - Fix DebuggerProtocol and SpecialPowers imports for jsloader.reuseGlobal = true. r=past
2012-11-02 18:03:13 -07:00
Ryan VanderMeulen
a7d45f8d16
Merge m-c to inbound.
2012-11-02 16:11:46 -04:00
Dão Gottwald
2af5871aa2
Bug 756313 - Don't load the homepage before the first paint. r=enn
2012-11-02 03:46:56 +01:00
Jonathan Griffin
c4e87bc8f7
Bug 797162 - Add make target for b2g xpcshell tests, r=ted
2012-11-01 14:29:27 -07:00
Chris Jones
4ac48c6333
Bug 807478 - fix timeout argument to waitFor(), r=cjones
2012-10-31 23:51:30 -07:00
Josh Aas
8a78b3c63d
Back out both patches for bug 647216 due to regression documented in bug 806244.
2012-11-01 09:19:24 -04:00
Ryan VanderMeulen
f4efaa936a
Merge m-c to inbound.
2012-10-31 20:19:27 -04:00
Doug Turner
f68c1576f8
Bug 805178 - Device Storage - Add tests to ensure Application Permissions match that of the Permission Matrix. r=jmaher
2012-10-31 10:06:51 -07:00
Kyle Huey
0469a02b25
Bug 798491: Add an option to stick all chrome JSMs/JS components in the same compartment. r=mrbkap,philikon
...
--HG--
extra : rebase_source : 98337b6a8c07d05e8c961a452dd05a7d75c3c60b
2012-10-31 09:13:28 -07:00
Ed Morley
7764b09ddb
Merge last PGO-green changeset of mozilla-inbound to mozilla-central
2012-10-31 14:06:39 +00:00