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
Vicamo Yang
a78b5b38c7
Backout 67cb43bb8865: Breaks B2G Marionette
2012-10-31 16:35:11 +08:00
Jonathan Griffin
de4d2abab6
Bug 807137 - Exclude test_innerWidthHeight from B2G testruns, since it times out, a=test-only, DONTBUILD(NPOTB)
2012-10-30 15:55:11 -07:00
Justin Lebar
574ef00744
Backed out changeset 8bc60d1ab725 (bug 806168)
2012-10-30 21:35:08 -04:00
Justin Lebar
1f675cf11a
Bug 806168 - Follow-up: Disable tests on Android. r=me
...
The test that I renamed in this bug was already disabled on Android, so this does nothing new.
2012-10-30 18:22:37 -04:00
Geoff Brown
ca1359ab4b
Bug 799863 (3/3) - use dm.pushFile(file, dir/file) instead of dm.pushFile(file, dir); r=wlach
2012-10-30 15:21:43 -06:00
William Lachance
917860c227
Bug 799863 (2/3) - Guard against an exception occurring before process is defined in xpcshell tests;r=gbrown
...
---
testing/xpcshell/runxpcshelltests.py | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
2012-10-16 16:32:33 -04:00
William Lachance
158ce952a1
Bug 799863 (1/3) - Make sure remote xpcshell tests can find mozdevice;r=gbrown
...
---
config/makefiles/xpcshell.mk | 1 +
js/src/config/makefiles/xpcshell.mk | 1 +
testing/testsuite-targets.mk | 1 +
3 files changed, 3 insertions(+)
2012-10-16 16:28:49 -04:00
Gregory Szorc
21d6dff002
Bug 807861 - Ensure state directory is present before running tests; r=rnewman
...
DONTBUILD (NPOTB)
--HG--
extra : rebase_source : fd66449c11968269d33eff3f686f22a8767b6898
2012-11-02 10:32:40 -07:00
Jonathan Griffin
1391d06573
Bug 807817 - Dump Marionette logs as well as writing to logfile, r=philikon
2012-11-01 14:49:15 -07:00
Kyle Huey
9a3674d80a
Bug 798491: Add an option to stick all chrome JSMs/JS components in the same compartment. r=mrbkap,philikon
2012-10-30 12:28:11 -07:00
Ed Morley
4144129728
Backout a145ded68994, e0cf397089ec & 1545e91c658e (bug 798491) for bustage on a CLOSED TREE
2012-10-30 17:02:31 +00:00
Kyle Huey
50b5d3f681
Bug 798491: Add an option to stick all chrome JSMs/JS components in the same compartment. r=mrbkap,philikon
2012-10-30 08:26:12 -07:00
Sam Garrett
3bdf0ebcd3
Bug 771554 - Removing autolog and having tps write-out results to JSON so that coversheet can handle them, r=jgriffin, DONTBUILD(NPOTB)
2012-10-27 17:42:25 -04:00
Ryan VanderMeulen
b428f34b9f
Backout e35f252ca573 for mochitest-other orange.
...
CLOSED TREE
--HG--
extra : rebase_source : 62e15f7306c4443d91daf6af66be9b7012ada9cc
2012-11-01 19:31:02 -04:00
Al Tsai
5bda15e690
Bug 805539 - Prevent effect from default values and network geolocation provider. r=dougt
2012-11-01 19:23:14 -04:00
Ryan VanderMeulen
0195c98e45
Merge m-c to inbound.
2012-11-01 19:23:07 -04:00
Dão Gottwald
6a7571f30d
Bug 756313 - Don't load the homepage before the first paint. r=enn
2012-11-01 22:00:35 +01:00
Gregory Szorc
03e3b5a172
Bug 795772 - More mach options to control xpcshell test execution; r=ted
...
DONTBUILD (NPOTB)
2012-10-31 10:29:26 -07:00
Jonathan Griffin
2be4ee5130
Bug 800102 - Work around adb deadlock when installing gecko in emulator, r=ahal
2012-10-30 12:26:50 -07:00
Ryan VanderMeulen
de5793a4b6
Merge inbound to m-c.
2012-10-27 16:39:23 -04:00
Jeff Hammel
c8a9204eca
Bug 805190 - document new procedure for mozbase mirroring and versioning;r=wlach ; DONTBUILD because NPOTB
2012-10-27 08:44:30 -07:00
Jonathan Griffin
3ddb4f2a49
Bug 805430 - Install mochitest extensions in B2G as app bundles, r=ahal, DONTBUILD(NPOTB)
2012-10-25 09:53:19 -07:00
Sam Garrett
782a83250f
Bug 796998 - Use mozinstall instead of mozregression for TPS, r=jgriffin, DONTBUILD(NPOTB)
2012-10-24 17:42:08 -06:00
Markus Stange
69c7d8ae0b
Bug 647216: Allow testing of MozMouseHittest window dragging. r=enndeakin
2012-10-26 15:40:11 -04:00
David Burns
37b7d7dbc2
Bug 805635: making sure we close the file on import_script; r=mdas
2012-10-26 16:23:52 +01:00
Jeff Hammel
9668b8ad63
Bug 805440 - Mozrunner installed from pypi when running setup_development.py;r=jgriffin
...
--HG--
extra : rebase_source : f34112c361a3b727913648a0cb593f8d966d43e1
2012-10-26 08:58:03 -07:00
Ryan VanderMeulen
cf897fbf06
Merge m-c to inbound.
2012-10-25 17:43:19 -04:00
Jonathan Griffin
c7a1f09409
Bug 805539 - Disable manifest.ini with no active tests, a=test-only, DONTBUILD(NPOTB)
2012-10-25 13:57:58 -07:00
David Burns
05e6c2e315
Bug 805403: Allow marionette to send keystrokes to elements without value attribute; r=mdas
2012-10-25 21:39:52 +01:00
Henrik Skupin
70a6884a3a
Bug 805297 - Marionette doesn't recognize relative test path from current working directory. r=jgriffin
2012-10-25 16:30:32 -04:00
Jonathan Griffin
034295e898
Bug 803740 - Wait for system-message-listener-ready before installing new gecko, r=mdas
2012-10-25 07:09:19 -07:00
Jonathan Griffin
8bed3442a4
Bug 805216 - Add mozdevice to tests.zip, r=jhammel
2012-10-24 14:54:14 -07:00
Ryan VanderMeulen
82f96dea7d
Merge m-c to inbound.
2012-10-24 14:07:16 -04:00
Jonathan Griffin
c6e718961f
Bug 805033 - Specify Marionette deps using >=, r=ahal, DONTBUILD(NPOTB)
2012-10-24 09:53:52 -07:00
William Lachance
cfb9c86b64
Bug 801652 - Make sure we print logcat, device info on remote mochitest/reftest failure;r=jmaher
2012-10-24 13:34:33 -04:00
Malini Das
0ed971374a
Bug 804562 - fix file permissions for marionette imported scripts, r=jgriffin
2012-10-24 11:36:43 -04:00
Jonathan Griffin
e0a26a0147
Bug 803254 - Detect emulator crashes, r=ahal, DONTBUILD(NPOTB)
2012-10-22 15:00:54 -07:00
Ben Turner
5e8d8d57f2
Bug 786295 - 'Delete IndexedDB related to an app when uninstalled'. r=bz+khuey+sicking.
2012-10-23 09:31:19 -07:00
Joel Maher
462bec6b42
Bug 804388 - update a new talos.zip to remove misleading remote debugging messages. r=aki
2012-10-23 07:54:14 -04:00
David Burns
de9fa23f1e
Bug 804289: bumped Marionette client version; r=jgriffin
2012-10-22 20:40:07 +01:00
Vicamo Yang
4512545522
Bug 803850: sync MarionetteJSTestCase.add_tests_to_suite arguements with others, r=automatedtester
2012-10-23 00:08:44 +08:00
Vicamo Yang
009224479e
Backout 16190e59bc8f, no r=
2012-10-23 00:07:43 +08:00
Vicamo Yang
3bac7cb7f2
Bug 803850: sync MarionetteJSTestCase.add_tests_to_suite arguements with others.
2012-10-23 00:01:41 +08:00
Ryan VanderMeulen
7ae7108be8
Merge the last PGO-green inbound changeset to m-c.
2012-10-19 21:43:03 -04:00
Jonathan Griffin
7ce9e0fcc9
Bug 803745 - Package b2g.json in tests.zip, r=jmaher
2012-10-19 17:19:22 -07:00
David Burns
2cbc77aa76
Bug 800956: adding the ability to get the size of elements to marionette; r=mdas
2012-10-19 21:59:15 +01:00
David Burns
0fedd8ba6a
Bug 803096: add the ability to get an elements location with marionette; r=mdas
2012-10-19 21:35:30 +01:00
Jonathan Griffin
5d6d95b924
Bug 803253 - Only wait for system-message-listener-ready on emulator startup, r=mdas, DONTBUILD(NPOTB)
2012-10-18 13:19:21 -07:00
David Burns
cf06f28de2
Bug 802227: add --testvars to runner to accept JSON file with test data; r=jgriffin
2012-10-19 20:32:36 +01:00
David Burns
e799cd6413
Bug 801703: iframe elements instead of using window.frames; r=mdas
2012-10-19 19:46:58 +01:00
Joel Maher
98c083c122
Bug 803308 - upload new talos.zip to capture enable privilege change. r=Callek
2012-10-18 20:19:29 -04:00
Joel Maher
0368f8ce4e
Bug 773891 - Fix pushprefenv to support char/string types. r=jdm
2012-10-18 08:03:31 -04:00
Alfredos-Panagiotis Damkalis
46919a3b22
Bug 799008: find_elements to not scope parents when searching with css in Marionette; r=dburns
2012-10-17 15:04:16 -07:00
Ryan VanderMeulen
9e7fb56e8a
Merge m-c to inbound.
2012-10-17 22:29:53 -04:00
Ryan VanderMeulen
614aaa7e59
Merge the last PGO-green inbound changeset to m-c.
2012-10-17 22:10:08 -04:00
Jonathan Griffin
b8c0d50d51
Bug 802877 - Delay a bit before setting default emulator geolocation, a=test-only, DONTBUILD(NPOTB)
2012-10-17 16:46:04 -07:00
Jonathan Griffin
5966aeeb1c
Bug 793045 - B2G mochitest manifest for harness stabilization, r=jmaher, DONTBUILD(NPOTB)
2012-10-17 15:32:46 -07:00
Jonathan Griffin
45e0ce533b
Bug 802807 - Only listen for system-message-listener-ready for JS tests, r=mdas, DONTBUILD(NPOTB)
2012-10-17 15:14:51 -07:00
Jonathan Griffin
9cc04bb1c2
Bug 790677 - Fix xpcshell test packaging for B2G, r=ted
2012-10-17 15:12:41 -07:00
Ehsan Akhgari
75ecc91244
Merge mozilla-central into mozilla-inbound
2012-10-16 20:43:47 -04:00
Jonathan Griffin
23b07f3f7b
Bug 792647 - Wait for system-message-listener-ready on B2G before returning during newSession, r=philikon
2012-10-16 16:33:55 -07:00
Masayuki Nakano
8acd6ae7f5
Bug 705057 part.1 Ensure a set of composition events is fired on same content r=smaug
2012-09-26 14:47:45 +09:00
Malini Das
51ea78a2f8
Bug 802753 - remove assertIn so test_getstatus is python 2.6 compatible, r=jgriffin
2012-10-17 16:49:49 -04:00
Gregory Szorc
a4fbeca327
Bug 799532 - Print directory listings when profile directory could not be deleted; r=ted
...
This patch is intended to be temporary and should be removed once the
underlying problem is resolved.
2012-10-17 11:17:49 -07:00
Jeff Hammel
c8ee2a64e2
Bug 802242 - mirror mozbase -> m-c for week of Oct 16 @ aa50f7cf0f
; r=wlach
2012-10-17 09:44:50 -07:00
David Burns
e539106b9b
Bug 784013: adding application cache helpers support to Marionette; r=jgriffin
2012-08-23 15:07:16 -07:00
Joel Maher
930b2cf1b2
Bug 801633 - upload a new talos.zip to capture latest talos changes. r=armenzg
2012-10-16 13:25:24 -04:00
Joel Maher
52bf998910
Bug 799107 - minidumps not being generated from robocop test crashes (breakpad environment variables not being set properly). r=kats
2012-10-16 13:25:23 -04:00
Henrik Skupin
e327718f4d
Bug 791270 - Crashtest for WebRTC crash [@sipcc::PeerConnectionImpl::AddStream]. r=jesup
2012-10-16 13:23:41 -04:00
Alfredos-Panagiotis Damkalis
a42576f82e
Bug 755552 - add getStatus() call to marionette, r=mdas
2012-10-15 16:51:27 -07:00
Ted Mielczarek
65c0211477
bug 811370 - runcppunittests doesn't handle hangs gracefully. r=ahal
2012-11-14 10:52:55 -05:00
Joel Maher
6af1cd416e
Bug 811361 - Deploy new talos.zip for a1594c017230. r=armenzg
2012-11-14 09:57:46 -05:00
Wes Kocher
5ac95629f7
Bug 787346 - Update revision of Jetpack code used in Firefox tests to pick up the new SDK layout.
2012-10-15 14:31:35 -07:00
Joel Maher
c2138f61fe
Backout e814e12508af (bug 799107), 45863b00372b (bug 801633),
2012-10-15 13:33:37 -04:00
Joel Maher
3c72bf2083
Bug 799107 - minidumps not being generated from robocop test crashes (breakpad environment variables not being set properly). r=kats
2012-10-15 11:13:44 -04:00
Joel Maher
807ab2d348
Bug 801633 - upload a new talos.zip to capture latest talos changes. r=armenzg
2012-10-15 11:13:43 -04:00
William Lachance
771972c9f2
Bug 756440 - Only warn when we fail cleanup steps with mobile mochitest/reftest;r=jmaher
...
Before we were outright failing if the test logfile was missing when cleaning
up these tests. But that's generally a sign that the app failed to start
up properly, which is the true issue we should be trying to catch / diagnose.
Let's just print a warning here and move on.
2012-10-15 10:15:19 -04:00
Joel Maher
975fa8f860
Backout f271acb304c2 (bug 799107),
2012-10-15 09:08:41 -04:00
Joel Maher
2ac065a653
Bug 799107 - minidumps not being generated from robocop test crashes (breakpad environment variables not being set properly). r=kats
2012-10-15 07:10:49 -04:00
Ryan VanderMeulen
aff5207df8
Merge inbound to m-c.
2012-10-13 04:36:33 -04:00
Jeff Hammel
d765443550
Bug 800110 - Mirror mozbase -> m-c for bug 800097 @ da60c88b8c
;r=ahal,r=wlach
2012-10-12 10:24:35 -07:00
Jonathan Griffin
44e11e74c9
Bug 800641 - Add mozfile to mozbase packages in test.zip, r=jhammel
2012-10-11 16:44:11 -07:00
Al Tsai
0a5276ac37
Bug 777983 - Add marionette test for b2g gps provider. r=dougt
2012-10-11 21:31:39 -04:00
Jonathan Griffin
32595346ae
Bug 800102 - Make installing gecko on B2G emulator more reliable, r=ahal, DONTBUILD(NPOTB)
2012-10-11 12:07:34 -07:00
Ehsan Akhgari
4e49b86a4a
Merge mozilla-central into mozilla-inbound
2012-10-10 20:21:13 -04:00
Gregory Szorc
03f6510b34
Bug 799291 - Part 3: Move mozbuild.testing into testing/; r=jhammel
...
--HG--
rename : python/mozbuild/mozbuild/testing/test.py => testing/moztesting/util.py
2012-10-10 11:08:09 -07:00
Gregory Szorc
3dd8150678
Bug 799291 - Part 1: Move mach commands for test running into test runners; r=jhammel
...
The code interacting with the test runners now resides in closer
proximity to the code it is invoking. We also purge testing
functionality from mozbuild, which is where it never really belonged.
--HG--
rename : python/mozbuild/mozbuild/testing/reftest.py => layout/tools/reftest/mach_commands.py
rename : python/mozbuild/mozbuild/testing/mochitest.py => testing/mochitest/mach_commands.py
rename : python/mozbuild/mozbuild/testing/xpcshell.py => testing/xpcshell/mach_commands.py
2012-10-10 11:08:09 -07:00
Ryan VanderMeulen
d8ec8fd542
Merge the last PGO-green inbound changeset to m-c.
2012-10-09 21:10:12 -04:00
Ehsan Akhgari
b9a98507da
Bug 799229 - Move the ForgetAboutSite modules to toolkit; r=Mossop
...
--HG--
rename : browser/components/privatebrowsing/src/ForgetAboutSite.jsm => toolkit/forgetaboutsite/ForgetAboutSite.jsm
rename : browser/components/privatebrowsing/test/browser/browser_privatebrowsing_clearplugindata.html => toolkit/forgetaboutsite/test/browser/browser_clearplugindata.html
rename : browser/components/privatebrowsing/test/browser/browser_privatebrowsing_clearplugindata.js => toolkit/forgetaboutsite/test/browser/browser_clearplugindata.js
rename : browser/components/privatebrowsing/test/unit/downloads.empty.sqlite => toolkit/forgetaboutsite/test/unit/downloads.empty.sqlite
rename : browser/components/privatebrowsing/test/unit/test_removeDataFromDomain.js => toolkit/forgetaboutsite/test/unit/test_removeDataFromDomain.js
rename : browser/components/privatebrowsing/test/unit/test_removeDataFromDomain_activeDownloads.js => toolkit/forgetaboutsite/test/unit/test_removeDataFromDomain_activeDownloads.js
2012-10-08 16:48:11 -04:00
David Clarke
047c93e64f
Bug 797513 - Add geolocation class to Marionette emulator, r=jgriffin, DONTBUILD(NPOTB)
2012-10-09 15:50:09 -07:00
Ted Mielczarek
d53b2c12ef
bug 787176 - Add a Python wrapper script for running C++ unit tests. r=jmaher,waldo
...
--HG--
extra : rebase_source : 2282494578a7dd792555633df2526835d39c5ac4
2012-08-30 15:20:38 -04:00
Jeff Hammel
a42ab51c5b
Bug 799605 - Mirror mozbase -> m-c for bug 799288 and bug 799507 @ https://github.com/mozilla/mozbase/commit/ 36a2f63be33af799a54d7f1511dc922730b10b22 ; r=wlach
2012-10-10 09:27:06 -07:00
Ehsan Akhgari
5c3d6544e2
Bug 798508 - Part 1: Implement the "private" window.open feature; r=bzbarsky
...
This patch adds support for a "private" window flag which can be used to
open new chrome windows in private browsing mode. It also tests to make
sure that the flag is not accessible from content. A test in the next
part makes sure that the flag is accessible from chrome.
2012-10-07 15:04:39 -04:00
Bobby Holley
f48983b4ed
Bug 794420 - Remove hard edge from SpecialPowers to window.Components. r=khuey
...
This causes us to leak every window ever, a la bug 722428.
2012-10-10 10:57:38 +02:00
Phil Ringnalda
f65996c27a
Bug 810705 - Reenable test_MochiKit-DOM-Safari.html on Linux now that bug 799295 should have fixed the crashes
2012-12-30 09:34:38 -08:00
Philipp von Weitershausen
5ca06b9430
Bug 820617 - Add a hook to make NetworkManager not manage offline status and use it in Marionette for B2G CI. r=jgriffin
2012-12-29 10:11:04 -08:00
Joel Maher
9534f755b5
Bug 736105 - robocop does a lot of redundant copying of profile and sleeps, we can cut runtime almost in half. r=gbrown
2012-12-28 07:18:22 -05:00
Jeff Walden
856405164c
Bug 824163 - Properly specify the path to the user.js to be put into the jsreftest profile so that it's not affected by the test subset being run. r=ted
...
--HG--
extra : rebase_source : 3df9aab1b17e1c10d54a10e519e20ef49410e3ca
2012-12-19 17:32:22 -05:00
Andrea Marchesini
11f00f17dc
Bug 816730 - [Activities] Filters do not work anymore. r=mounir, sr=sicking
2012-12-27 11:12:06 -05:00
Josh Matthews
8658387d97
Bug 815523. patches stolen from 782542 Parts 1,2,3: Necko IPC security pref, and disable for xpcshell tests, r=ted,jdm
2012-12-07 17:12:02 -05:00
Ed Morley
8353502053
Bug 793855 - runxpcshelltests.py should catch shutil.rmtree(dirname) exceptions and output a TBPL-compatible error; r=gps
2012-10-07 21:21:52 +01:00
Ed Morley
af1ccf9fc9
Bug 793855 - runxpcshelltests.py should check the test process has exited and if not, output a TBPL-compatible error; r=gps,jmaher
2012-10-07 21:21:30 +01:00
Ms2ger
20085560d9
Bug 798806 - Disable permaorange test_bug511075.html on Android.
2012-10-06 20:37:25 +02:00
Wes Kocher
cfeee1215e
No bug - Update Jetpack tests on mozilla-central to get current code before the Aurora merge.
2012-10-05 23:48:39 -07:00
Brian Nicholson
9b1cdd0fbe
Bug 769145 - Part 6: Update test cases for layout changes. r=mfinkle
2012-10-05 17:27:12 -07:00
Albert Crespell
c450877df2
Bug 746069: Part 4: Tests for NetworkStats. r=philikon r=marshall
2012-10-04 18:45:56 +02:00
Simon Montagu
4bef6a2052
Make SimpleTest.is* functions less verbose on pass. Bug 797827, r=jmaher
2012-10-04 08:57:50 -07:00
William Lachance
c5f092dab4
Bug 795496 - Make mozdevice raise exceptions on error;r=ahal,jmaher
...
It turns out that relying on the user to check return codes for every
command was non-intuitive and resulted in many hard to trace bugs.
Now most functinos just return "None", and raise a DMError when there's an
exception. The exception to this are functions like dirExists, which now return
booleans, and throw exceptions on error. This is a fairly major refactor,
and also involved the following internal changes:
* Removed FileError and AgentError exceptions, replaced with DMError
(having to manage three different types of exceptions was confusing,
all the more so when we're raising them)
* Docstrings updated to remove references to return values where no
longer relevant
* pushFile no longer will create a directory to accomodate the file
if it doesn't exist (this makes it consistent with devicemanagerADB)
* dmSUT we validate the file, but assume that we get something back
from the agent, instead of falling back to manual validation in the
case that we didn't
* isDir and dirExists had the same intention, but different
implementations for dmSUT. Replaced the dmSUT impl of getDirectory
with that of isDir's (which was much simpler). Removed
isDir from devicemanager.py, since it wasn't used externally
* killProcess modified to check for process existence before running
(since the actual internal kill command will throw an exception
if the process doesn't exist)
In addition to all this, more unit tests have been added to test these
changes for devicemanagerSUT.
2012-10-04 11:28:07 -04:00
Justin Lebar
edb0abd581
Bug 789392 - Allow mozapp frames to window.close() themselves. r=bz
2012-10-04 00:44:50 -04:00
Matthew Noorenberghe
3c0d348b0c
Disable test_notifications_popup.html from bug 784028 on android since it's lacking PopupNotifications
2012-10-03 20:54:37 -07:00
Ryan VanderMeulen
97e964573e
Backout 99caa1f41fe1 (bug 797515) and a04b83c53297 (bug 789392) for M2 orange.
2012-10-03 21:59:41 -04:00
Justin Lebar
bac3799c10
Bug 789392 - Allow mozapp frames to window.close() themselves. r=bz
2012-10-03 20:45:40 -04:00
Ryan VanderMeulen
c8cb8dc8b8
Merge m-c to inbound.
2012-10-03 18:19:17 -04:00
David Chan
e537e59ad4
Bug 797177 - Unbreak b2g mochitests, r=ahal
2012-10-02 15:43:19 -07:00
Marshall Culpepper
55b9441df8
Bug 797154: A new virtualenv frontend for B2G mochitests. r=jgriffin
2012-10-03 12:50:07 -05:00
Jeff Hammel
8debe5cabb
Bug 797144 - mirror mozbase -> m-c for bug 796863 @ db7f115a9e
;r=wlach
2012-10-03 09:13:21 -07:00
Patrick Wang
d4e9c05829
Bug 777384 - Test case r=jlebar
...
--HG--
extra : rebase_source : 777580f0a22bfb3d9d447097b0f4a379f2b7416b
2012-09-27 01:47:57 +08:00
Joel Maher
23f83e405b
Bug 797112 - we have a call to dm.checkCmd and that api doesn't exist anymore. r=wlach
2012-10-03 11:07:31 -04:00
Masatoshi Kimura
a31808914d
Bug 795544 - Test updates. r=bz
...
--HG--
rename : dom/encoding/test/test-big5.js => dom/encoding/test/unit/test_big5.js
rename : dom/encoding/test/test-euc-jp.js => dom/encoding/test/unit/test_euc-jp.js
rename : dom/encoding/test/test-euc-kr.js => dom/encoding/test/unit/test_euc-kr.js
rename : dom/encoding/test/test-gbk.js => dom/encoding/test/unit/test_gbk.js
rename : dom/encoding/test/test-hz-gb-2312.js => dom/encoding/test/unit/test_hz-gb-2312.js
rename : dom/encoding/test/test-iso-2022-jp.js => dom/encoding/test/unit/test_iso-2022-jp.js
rename : dom/encoding/test/test-iso-2022-kr.js => dom/encoding/test/unit/test_iso-2022-kr.js
rename : dom/encoding/test/test-shift_jis.js => dom/encoding/test/unit/test_shift_jis.js
rename : dom/encoding/test/tests.js => dom/encoding/test/unit/test_singlebytes.js
2012-10-01 21:49:12 +09:00
Justin Lebar
a1db0ce78f
Back out bbf94917f0ec (bug 789392) on strong suspicion of causing assertions in debug mochitest-2 on a CLOSED TREE.
...
The assertion encountered is:
Assertion failure: !gAppContentParents || !gAppContentParents->Get(mAppManifestURL), at ../../../dom/ipc/ContentParent.cpp:774
TEST-UNEXPECTED-FAIL | /tests/dom/browser-element/mochitest/test_browserElement_oop_CloseFromOpener.html | Exited with code 11 during test run
PROCESS-CRASH | /tests/dom/browser-element/mochitest/test_browserElement_oop_CloseFromOpener.html | application crashed (minidump found)
Thread 0 (crashed)
2012-10-02 18:20:20 -04:00
David Rajchenbach-Teller
e6a8c6b79b
Bug 783987 - Test suite without hostile promises. r=Mossop
2012-10-02 16:38:50 -04:00
Ryan VanderMeulen
9a8375e98e
Merge m-c to inbound.
2012-10-02 16:38:45 -04:00
Justin Lebar
91b51e08b1
Bug 789392 - Allow mozapp frames to window.close() themselves. r=bz
2012-10-02 13:55:52 -04:00
Jonathan Griffin
0dd643fca4
Bug 796019 - Make Marionette smarter about registering frame scripts, r=mdas, DONTBUILD(NPOTB)
2012-10-02 10:37:47 -07:00
Gervase Markham
ba3ce6f467
Bug 759095 - remove stray references to tri-license.
2012-10-02 12:52:06 +01:00
Vladimir Vukicevic
022565fe50
b=683143,792462; Some tests call SimpleTest.finish() twice/guard against that; r=ehsan
2012-10-01 17:51:10 -04:00
Jeff Hammel
1a43e8a377
Bug 795943 - Mirror mozbase -> m-c for week of Oct 1 @ 22aa0aee78
;r=wlach
...
--HG--
extra : rebase_source : 389b6c3a2923c40167698b477e4d57b230b1a063
2012-10-01 14:00:55 -07:00
Justin Lebar
82e6843b16
Bug 794280 - Improve comment for SpecialPowers.pushPrefEnv(). r=ted DONTBUILD
2012-10-02 12:04:24 -04:00
Andrea Marchesini
1827b6489f
Bug 793310 - Support sms:, tel: and mailto: URI schemes, r=philipp
2012-10-01 11:28:01 -07:00
Andrew Halberstadt
8a624c2363
Bug 685903 - Remove firebug automation from testing/firebug. r=jhammel
2012-09-26 11:07:07 -04:00
Phil Ringnalda
3b62c5485a
Merge last PGO-green changeset of mozilla-inbound to mozilla-central
2012-09-28 22:06:29 -07:00
Jonathan Griffin
4ea382dcba
Bug 775116 - Fix frame switching to work with id, name, and remote frames, r=mdas, DONTBUILD(NPOTB)
2012-09-28 16:16:22 -07:00
Jonathan Griffin
bb23dbc168
Bug 795100 - Add a --gecko-path argument to the B2G mochitest testrunner, r=ahal, DONTBUILD(NPOTB)
2012-09-28 10:04:03 -07:00
Bob Clary
120a77d996
Bug 789086 - use unique temporary filename for robotium.config file in mochitest/runtestsremote.py, r=jmaher.
2012-09-28 12:25:46 -07:00
Ryan VanderMeulen
ef0d8282c6
Merge m-c to inbound.
2012-09-27 23:05:53 -04:00
Jonathan Griffin
bc1d385b46
Bug 789976 - Add --gecko-path argument to Marionette, r=ahal, DONTBUILD (NPOTB)
2012-09-27 13:47:17 -07:00
Jonathan Griffin
fc58561b1a
Bug 794692 - Change Marionette's package name to marionette_client, r=mdas, DONTBUILD (NPOTB)
2012-09-27 10:42:37 -07:00
Isaac Aggrey
d159f53557
Bug 789847 - Remove PR_CALLBACK usage from tree
2012-09-25 11:18:38 -05:00
Josh Matthews
10314074af
Bug 770778 - Make TCPSocket e10s-friendly. r=bent
2012-09-24 14:53:49 -04:00
Malini Das
d0c2b8f569
Bug 792084 - add shellCheckOutput command to devicemanager, r=wlach
2012-09-26 12:32:02 -04:00
Mounir Lamouri
ba0f1f7dd7
Bug 773373 part 6 - Disable tests on Android. r=sicking
2012-09-25 23:33:02 +01:00
Ed Morley
4ebb07022f
Bug 793739 - mirror mozbase to m-c for week of Sept 24, 2012 @ b12b008846
;r=jhammel
2012-09-25 09:35:14 -07:00
Jeff Hammel
2663baeebf
Bug 793746 - point to new talos.zip for dzclient;r=jmaher
2012-09-25 09:10:16 -07:00
Andrea Marchesini
3d78e7416e
Bug 779982 - Change behaviour of getSelf and add amInstalled function. r=sicking
2012-09-25 11:04:24 -04:00
Ted Mielczarek
8366731c85
bug 733501 - Fix crashreporter xpcshell tests to actually run. r=jmaher
2012-09-13 15:43:28 -04:00
Wes Kocher
627cffdf16
Update Jetpack tests used in Firefox to pick up the fix for bug 793052.
2012-09-24 09:57:34 -07:00
Bobby Holley
8188b09b4e
Bug 792036 - Fix up tests to avoid relying on the existence of window.Components (MANUAL). r=mccr8
...
These are the manual fixes that the ensuing auto-generation can't deal with. Some of them
just fix up formatting (such as Components.\nFoo, so that subsequent auto-generation can
work better).
2012-09-24 14:46:28 +02:00
Bobby Holley
373e284d28
Bug 792036 - Add a SpecialPowers API to provide access to the Components object in various forms. r=mrbkap,ted
...
Now that window.Components is no longer acccessible to page JS, we need a way
to access it in mochitests. So this patch provides SpecialPowers.Components,
which is the bonafide Components object for the window upon which SpecialPowers
is defined. It also provides SpecialPowers.{Cc,Ci,Cr,Cu}, which are SpecialPowers-wrapped
versions of their respective sub-objects (with the exception of Ci, which is unwrapped).
2012-09-24 14:46:27 +02:00
Wes Kocher
e92cf030f7
Update Jetpack tests in Firefox to pick up bug 793035.
2012-09-21 13:44:04 -07:00
Ryan VanderMeulen
4af64dcc49
Merge the last PGO-green inbound changeset to m-c.
2012-09-20 21:23:35 -04:00
Jonathan Griffin
16aaf72b16
Bug 792173 - Add TEST-UNEXPECTED-FAIL output to Marionette, r=mdas, DONTBUILD because NPOTB
2012-09-20 15:09:57 -07:00
Jonathan Griffin
509b933408
Bug 792945 - Remove datazilla from Marionette deps, r=mdas
2012-09-20 15:03:50 -07:00
Phil Ringnalda
b5123fb830
Back out 1e7050c52cb9 (bug 792850), 776f7325952b (bug 705047), 2e1be0680e70 (bug 733501), 6adef296963c (bug 791775), b8397781f862 (bug 792391) for WinXP hangs and suspicion of breaking Android stacks
2012-09-20 14:38:14 -07:00
Jonathan Griffin
d9a0348fb5
Bug 791346 - Fix Marionette shutdown problems on Windows, r=dburns, DONTBUILD because NPOTB
2012-09-20 11:13:42 -07:00
Wes Kocher
50e39ac724
Update Jetpack tests used in Firefox to fix bug 792269.
2012-09-19 16:41:49 -07:00
Ted Mielczarek
429a57acfc
bug 733501 - Fix crashreporter xpcshell tests to actually run. r=jmaher
...
--HG--
extra : rebase_source : fbda47ca470ea6325aca5f99ab1a59fe911aafdd
2012-09-13 15:43:28 -04:00
Joel Maher
3c0592ca47
Bug 762908 - Rip enablePrivilege out of spidermonkey tests. r=ted
...
--HG--
rename : testing/mochitest/specialpowers/Makefile.in => testing/specialpowers/Makefile.in
rename : testing/mochitest/specialpowers/chrome.manifest => testing/specialpowers/chrome.manifest
rename : testing/mochitest/specialpowers/components/SpecialPowersObserver.js => testing/specialpowers/components/SpecialPowersObserver.js
rename : testing/mochitest/MockFilePicker.jsm => testing/specialpowers/content/MockFilePicker.jsm
rename : testing/mochitest/tests/SimpleTest/MozillaLogger.js => testing/specialpowers/content/MozillaLogger.js
rename : testing/mochitest/tests/SimpleTest/SpecialPowersObserverAPI.js => testing/specialpowers/content/SpecialPowersObserverAPI.js
rename : testing/mochitest/specialpowers/content/specialpowers.js => testing/specialpowers/content/specialpowers.js
rename : testing/mochitest/tests/SimpleTest/specialpowersAPI.js => testing/specialpowers/content/specialpowersAPI.js
rename : testing/mochitest/specialpowers/install.rdf => testing/specialpowers/install.rdf
rename : testing/mochitest/specialpowers/jar.mn => testing/specialpowers/jar.mn
2012-09-20 09:06:50 -04:00
Hubert Figuière
b7ae64de3b
Bug 777145 - Part 2: Make sure we are online when runing marionette. r=jgriffin
...
--HG--
extra : rebase_source : ffadd060d43d3c0839573988afd35c2be67ebf8f
2012-09-19 13:31:03 -07:00
Gregor Wagner
b764bd96c5
Bug 792536 - Enable contacts and settings tests on mobile. r=fabrice
2012-09-19 21:37:05 -07:00
Gregor Wagner
9c9eb3a586
Bug 770731 - Expose JS API for modifying app permissions. r=sicking
2012-09-19 11:19:00 -07:00
Graeme McCutcheon
c183f67a15
Merge last PGO green changeset from mozilla-inbound to mozilla-central
2012-09-19 15:15:34 +01:00
Ehsan Akhgari
a6ec3197c4
Improve the failure message when a mochitest ends without a call to SimpleTest.finish, no bug, irc-r=vlad
...
DONTBUILD
2012-09-18 21:54:53 -04:00
David Clarke
34c826661c
Bug 790546 - Add sdcard option to emulator, r=jgriffin, DONTBUILD because NPOTB
2012-09-17 18:44:07 -07:00
Jonathan Griffin
cbddb3fe2e
Bug 791033 - Allow tests to provide custom pass/fail strings for is/isnot/ok assertions, r=mdas
2012-09-14 14:34:38 -07:00
Jeff Hammel
7a40628ff5
Bug 791716 - mirror mozbase -> m-c for week of Sept 17, 2012;r=wlach
2012-09-17 15:13:45 -07:00
Christian Holler
9c12900be3
Bug 787916 - Hide Mochitest test table with --close-when-done option. r=jmaher
2012-09-19 01:28:39 +02:00
Gregor Wagner
f86a19dece
Backout bug 770731
2012-09-18 16:19:56 -07:00
Wes Kocher
393d0760f8
Update Jetpack code used in Firefox to fix bug 790395
2012-09-18 16:15:15 -07:00
Jonathan Griffin
7a238fad77
Bug 792228 - Let marionette recognize NodeList during findelements, r=mdas
2012-09-18 14:20:20 -07:00
Gregor Wagner
12da45ca6f
Bug 770731 - Expose JS API for modifying app permissions. r=sicking
2012-09-18 14:52:39 -07:00
Jonathan Griffin
8d6cab14ea
Bug 790827 - Don't package android apk's for B2G, r=ted
2012-09-13 13:46:02 -07:00
David Burns
56efc718a2
Bug 787545: Allow Marionette on fennec to return a session; r=jgriffin
2012-09-18 01:08:55 -07:00
Jonathan Griffin
429d9f164e
Bug 790465 - Refactor Marionette testrunner to make it easier to write Gaia tests, r=mdas
2012-09-14 15:04:34 -07:00
Tanvi Vyas
8d096dbc2e
Bug 62178 - Mochitest - iframe, stylesheet, object, script, image, media, xhr (Disabled on android until ssl is supported), r=smaug
2012-09-16 20:53:01 -07:00
Ryan VanderMeulen
f4cbe90811
Merge m-c to inbound.
2012-09-14 21:16:25 -04:00
Ryan VanderMeulen
976960c2ce
Merge the last PGO-green inbound changeset to m-c.
2012-09-14 21:09:07 -04:00
Mihnea Dobrescu-Balaur
b8ce2208cc
Bug 791025 - Add flag to re-use xpcshell files on a device from a previous run, r=jgriffin, DONTBUILD because NPOTB
2012-09-14 16:44:29 -07:00
Jeff Hammel
f3edc1bbff
bug 702832 follow up: add license header;r=wlach DONTBUILD because NPOTB
...
--HG--
extra : rebase_source : 054283ae7cd75772a8303358e553f5d8b78ec680
2012-09-14 14:17:32 -07:00
Jeff Hammel
70d1b94a2b
Bug 702832 - solidify strategy to sync mozbase packages to m-c;r=wlach DONTBUILD because NPOTB
2012-09-14 14:12:35 -07:00
Adam Dane [:hobophobe]
1b8626417a
Bug 787624 - Test for bug 787624. r=roc
2012-09-14 15:00:21 -05:00
Paul Adenot
8ac3fd19fd
Bug 790132 - Add a test to make sure media sniffing occurs only when we want. r=bz
2012-09-12 13:04:01 -07:00
Ed Morley
e37982cedb
Merge last PGO-green changeset of mozilla-inbound to mozilla-central
2012-09-12 21:50:56 +01:00
Joel Maher
7618043c34
Bug 790271 - upload new talos.zip to capture fix for fennec robocop and xperf reporting. r=armenzg
2012-09-12 07:56:46 -04:00
Kartikaya Gupta
49a83a548e
Bug 767449 - Allow robotium tests to put files in places other than /mnt/sdcard. r=jmaher
2012-09-12 07:56:31 -04:00
Ted Mielczarek
0e9512590b
Bug 789623 - Skip packaging pyc tests in test package, r=glandium, CLOSED TREE
2012-09-03 20:23:40 -04:00
Jeff Hammel
2fb3ca19f0
Bug 790018 - bump version of manifestdestiny and mirror to m-c;r=mcote
2012-09-11 19:46:39 -07:00
Georg Fritzsche
caeb23b288
Bug 784145 - When submitting hang reports, submit the browser report as a field of the plugin report instead of as a completely separate report. r=ted
2012-09-08 19:20:59 +02:00
Mihnea Dobrescu-Balaur
4f7f0fe23f
Bug 786848 - Add ability to post xpcshell test results to autolog, r=jgriffin
2012-09-10 11:15:00 -07:00
Mark Cote
de0a808cbe
Bug 789496 - DeviceManagerSUT: always consume prompt after receiving agent warning. r=wlach
2012-09-10 11:33:11 -04:00
Mihnea Dobrescu-Balaur
da52969f34
Bug 785797 - adapt test_info to the current implemented functionality
2012-09-10 11:23:45 -04:00
Jeff Hammel
f4f949ab6d
Bug 789328 - bump mozprocess and mozrunner (again) and release to pypi
2012-09-10 11:13:04 -04:00
Jonathan Griffin
d8e0dcfd02
Bug 788842 - Mirror mozbase to m-c, r=jhammel
2012-09-07 17:58:39 -07:00
Jonathan Griffin
a83f8b8d14
backout 69243e829931 due to OSX 10.7 bustage
2012-09-07 17:05:26 -07:00
Jonathan Griffin
0435762ffe
Bug 788842 - Mirror mozbase to m-c, r=jhammel
2012-09-07 15:39:17 -07:00
Ryan VanderMeulen
3f079a04ec
Merge m-c to inbound.
2012-09-07 16:22:55 -04:00
Hao Gao
a84b8c80c8
Bug 787116 - Use self.stream to write Marionette log lines, r=jgriffin, DONTBUILD because NPOTB
2012-09-07 10:04:44 -07:00
Boris Zbarsky
d91716f0ab
Bug 767931. Make drawWindow and asyncDrawXULElement ChromeOnly. r=roc
2012-09-07 01:29:47 -04:00
William Lachance
cca13f1816
Bug 723107 - Re-add mozdevice to testing/mozbase, remove duplicate files in build/mobile;r=jmaher
2012-09-07 16:00:31 -04:00
Masayuki Nakano
e97c0a46d9
Bug 788401 Avoid JS warnings in EventUtils.synthesizeWheel() r=smaug
2012-09-07 09:53:27 +09:00
Ryan VanderMeulen
09194a3074
Merge m-c to inbound.
2012-09-06 17:58:41 -04:00
Jonathan Griffin
a33bebd7b3
Bug 788854 - Escape backslash in filenames, r=mdas, DONTBUILD because NPOTB
2012-09-05 17:19:15 -07:00
Mike Hommey
6c0a8d0536
Bug 788463 - Import log4moz.js from resource:/// instead of resource://gre/. r=mdas
2012-09-06 08:13:13 +02:00
Wes Kocher
4f39a7ba08
Update Jetpack tests in Firefox to pick up bug 774709's tentative fix.
2012-09-06 10:33:59 -07:00
Ryan VanderMeulen
4cc4e12e7d
Merge m-c to inbound.
2012-09-05 17:52:28 -04:00
Scott Johnson
3ea152f05b
Bug 780258: Add an interface to set the maximum line box width, accessible from chrome script. [r=dbaron]
2012-09-05 16:39:34 -05:00
Myk Melez
b4fdf2f847
bug 785545 - unrefactor mozApps tests for maximum readability/reliability; r=fabrice
2012-09-05 10:08:54 -07:00
Geoff Brown
2ae7b16b75
Bug 783011 - Change order of command line args for android xpcshell tests; r=jmaher
2012-09-05 07:42:02 -06:00
Jonathan Griffin
5e5d8eeda1
Bug 756577 - Return an error if unable to load a page during navigate(); r=mdas, DONTBUILD because NPOTB
2012-08-21 14:00:44 -07:00
Ryan VanderMeulen
59cedff1d9
Merge the last PGO-green inbound changeset to m-c.
2012-09-04 21:45:09 -04:00
Joel Maher
26d9e20e39
Bug 788235 - update a new talos.zip to capture xperf io tracking and correct product info for datazilla. r=armenzg
2012-09-04 15:43:40 -04:00
Wes Kocher
6589977592
Update Jetpack code tested in Firefox to pick up the additional logging from bug 774709.
2012-09-03 17:49:05 -07:00
Ryan VanderMeulen
171736767a
Merge the last PGO-green inbound changeset to m-c.
2012-08-31 21:36:07 -04:00
Jonathan Griffin
bf55adcf8c
Bug 779011 - Clean up properly after JS exceptions during async_execute calls, a=test-only, DONTBUILD because NPOTB
2012-08-31 13:59:48 -07:00
Jonathan Griffin
bf16a0cc44
Bug 787520 - Fix test_log.py, a=test-only, DONTBUILD because NPOTB
2012-08-31 11:58:18 -07:00
Mihnea Dobrescu-Balaur
de804061a7
Bug 786866 - export LD_PRELOAD for xpcshell tests on B2G, r=jgriffin, DONTBUILD because NPOTB
2012-08-29 17:16:07 -07:00
Brian R. Bondy
de1d850df9
Bug 785744 - Async file picker cleanup. r=neil
2012-08-29 14:37:43 -04:00
Ryan VanderMeulen
9d666dfae5
Merge m-c to inbound.
2012-09-04 21:01:50 -04:00
Jonathan Griffin
7b89a942b5
Bug 786463 - Add TEST-START and TEST-END to output, r=mdas, DONTBUILD because NPOTB
2012-08-29 10:39:11 -07:00
Josh Matthews
27edbc2647
Bug 773956 - Fix up invalid syntax and configurations in xpcshell.ini. r=jmaher
2012-07-14 10:48:45 -04:00
Wes Kocher
13fd62f774
Bug 786399 - Update Jetpack tests used in Firefox tests. r=mossop
2012-08-29 07:49:26 -05:00
Jonathan Griffin
aecaeb48fd
Bug 786094 - Track the current chrome window during a session, r=mdas, DONTBUILD because NPOTB
2012-08-28 11:14:30 -07:00
Jonathan Griffin
554b014a2b
Bug 786032 - Make search timeouts fail successfully, r=mdas, DONTBUILD because NPOTB
2012-08-27 13:50:34 -07:00
Mounir Lamouri
ff3a89b7f3
Bug 756645 - Implement IndexedDB apps isolation. r=bent
2012-08-28 09:46:46 -03:00
Ryan VanderMeulen
4b018119c7
Merge m-c to inbound.
2012-08-27 12:51:10 -04:00
Jonathan Griffin
347cc960fa
Bug 785273 - Fix MarionetteJS case breakage, a=test-only, DONTBUILD because NPOTB
2012-08-27 09:34:23 -07:00
Philipp von Weitershausen
d158b5747c
Bug 776825 - Separate message managers into senders and broadcasters. r=smaug
...
--HG--
rename : content/base/public/nsIFrameMessageManager.idl => content/base/public/nsIMessageManager.idl
2012-08-27 11:13:02 -03:00
Mounir Lamouri
8111973e06
Bug 619236 - Set user_version in generated permissions.sqlite for tests. r=sicking
2012-08-23 11:39:41 -07:00
Mounir Lamouri
a263ac2cb9
Bug 777072 - 6/7 Update the Permission Manager database to save appId/isInBrowserElement. r=sicking
2012-08-23 11:38:26 -07:00
Dave Camp
e3d5efed46
Merge fx-team to m-c
2012-08-25 16:56:09 -07:00
Dave Camp
9dd06deae3
Bug 785635 - Markup panel undo is broken. r=jwalker
2012-08-25 11:04:47 -07:00
Ryan VanderMeulen
31b5d3335d
Merge m-c to inbound.
2012-08-24 16:18:09 -04:00
Joel Maher
5c86316fc8
Bug 785249 - deploy new talos.zip to capture recent changes. r=coop
2012-08-24 11:22:43 -04:00
Chris Jones
bb75bebb82
No bug: Merge backout on a CLOSED TREE r=bustage
2012-08-23 22:33:04 -07:00
Chris Jones
da27f385d7
Back out bug 777072, bug 619236, and bug 784878
2012-08-23 22:00:14 -07:00
Ryan VanderMeulen
9ad8ca8a9d
Merge the last PGO-green inbound changeset to m-c.
2012-08-23 22:06:49 -04:00
Johannes Vogel
991a87a528
Bug 755856 - make marionette client look for adb in path first, r=mdas
2012-08-23 15:46:48 -04:00
Mounir Lamouri
c7228477b1
Bug 619236 - Set user_version in generated permissions.sqlite for tests. r=sicking
2012-08-23 11:39:41 -07:00
Mounir Lamouri
65d035edc9
Bug 777072 - 6/7 Update the Permission Manager database to save appId/isInBrowserElement. r=sicking
2012-08-23 11:38:26 -07:00
Mounir Lamouri
8e092dc2e5
Bug 775815 - Use new Permission Manager API in SpecialPowers. r=sicking
2012-08-23 11:23:48 -07:00
Kyle Machulis
76c7b95997
Backout of c129811b87ef due to mochi bustage
2012-08-23 12:00:51 -07:00
Bobby Holley
bc6c1d1c2e
Bug 785162 - Disable test_bug760802.html on android. r=smaug,dougt
2012-08-23 11:45:28 -07:00
Kyle Machulis
a33056cfaf
Bug 783426: Patch 2 - Async DOMRequest Firing Tests; r=sicking
2012-08-23 09:52:54 -07:00
Kyle Machulis
37e2b5f29a
Backout be6da7f8989c due to bustage
2012-08-22 18:11:52 -07:00
Kyle Machulis
6402f59383
Bug 783426: Patch 2 - Tests for Async DOMRequest Firing; r=sicking
2012-08-22 18:04:01 -07:00
Kyle Machulis
56b6897dc3
Backing out 542abbd15139 due to incorrect commit messages
2012-08-22 18:00:57 -07:00
Kyle Machulis
8298af775b
Bug 783426: Patch 2 - Tests for Async DOMRequest Firing
2012-08-22 17:58:05 -07:00
Mark Capella
daef2756b5
Bug 772272 - Remove do_load_httpd_js from xpcshell tests, Final, r=ted
...
Remove last three references, final cleanup
2012-08-23 08:16:44 -04:00
Jonathan Griffin
968d03af25
Bug 785273 - Prevent circular references to Marionette instances, r=mdas
2012-08-23 17:31:42 -07:00
Ryan VanderMeulen
5fd5fe5bbc
Merge m-c to inbound.
2012-08-23 19:50:46 -04:00
Vicamo Yang
14d901a6ff
Bug 707659 - Part 2: fix test scripts, r=philikon
2012-08-23 01:30:40 +08:00
Ehsan Akhgari
e368dc9c85
Bug 579517 - Part 1: Automated conversion of NSPR numeric types to stdint types in Gecko; r=bsmedberg
...
This patch was generated by a script. Here's the source of the script for
future reference:
function convert() {
echo "Converting $1 to $2..."
find . ! -wholename "*nsprpub*" \
! -wholename "*security/nss*" \
! -wholename "*/.hg*" \
! -wholename "obj-ff-dbg*" \
! -name nsXPCOMCID.h \
! -name prtypes.h \
-type f \
\( -iname "*.cpp" \
-o -iname "*.h" \
-o -iname "*.c" \
-o -iname "*.cc" \
-o -iname "*.idl" \
-o -iname "*.ipdl" \
-o -iname "*.ipdlh" \
-o -iname "*.mm" \) | \
xargs -n 1 sed -i -e "s/\b$1\b/$2/g"
}
convert PRInt8 int8_t
convert PRUint8 uint8_t
convert PRInt16 int16_t
convert PRUint16 uint16_t
convert PRInt32 int32_t
convert PRUint32 uint32_t
convert PRInt64 int64_t
convert PRUint64 uint64_t
convert PRIntn int
convert PRUintn unsigned
convert PRSize size_t
convert PROffset32 int32_t
convert PROffset64 int64_t
convert PRPtrdiff ptrdiff_t
convert PRFloat64 double
2012-08-22 11:56:38 -04:00
jmaher@mozilla.com
2bce9d5ce3
Bug 781580 - deploy a new talos.zip to capture bug 781507;r=Callek
2012-08-21 20:57:11 -07:00
Donovan Preston
ea8f619eac
Bug 733573 - Expose a client TCP socket API to web applications [r=honzab,fabrice]
2012-08-21 09:46:27 -07:00
Ed Morley
fea574e658
Backout 3c39fdebf386 (bug 733573) for native Android m3 failures in test_tcpsocket_enabled_no_perm.html on a CLOSED TREE
2012-08-21 23:01:09 +01:00
Donovan Preston
bb0843a774
Bug 733573 - Expose a client TCP socket API to web applications [r=honzab,fabrice]
2012-08-21 09:46:27 -07:00
Wes Kocher
754c3ec95d
Bug 784113 - Update Jetpack code being tested against mozilla-central.
...
--HG--
extra : rebase_source : 157a1246653d6a58eddeaca0defc97a3a58d6e92
2012-08-20 16:13:46 -05:00
Ian Melven
0e674bdc8b
Bug 341604 - tests for iframe sandbox - plugins r=jst
2012-08-20 11:34:33 -07:00
Wes Kocher
94c977596a
Bug 783728 - Update revision of Jetpack code tested on m-c. r=philor
2012-08-17 21:29:52 -05:00
Bobby Holley
8ac1ba8830
Bug 695292 - Port SimpleTest.executeSoon() to SpecialPowers. r=mrbkap
...
If we just naively use the thread manager to dispatch the event via SpecialPowers,
we cannot avoid the XPCWrappedJS for the runnable being in chrome scope (even if
we pass a content object, we make the call in chrome scope, so we pass a cross-
compartment wrapper). This means that the machinery in
nsXPCWrappedJSClass::CheckForException ends up calling the error reporter for the
SpecialPowers scope, which isn't what we want.
Messing around with the implementation of CheckForException is playing with fire.
So we work around this with an explicit Cu API. :-(
2012-08-17 15:13:23 -07:00
Brian R. Bondy
80f272156f
Bug 731307 - Async filepicker test changes. r=roc
2012-08-17 11:35:01 -04:00
Ed Morley
6e08949bc2
Bug 783515 - Re-enable falsely blamed native Android M3 tests now dom/indexedDB/ipc/test_ipc.html is disabled; r=gbrown,jmaher
2012-08-17 14:42:26 +01:00
Ed Morley
06cb125d07
Bug 783509 - Disable the newly created test_browserElement_inproc_AppWindowNamespace.html on Android for permaorange timeouts; r=jmaher
2012-08-17 14:42:26 +01:00
Ed Morley
3925d65d7d
Bug 783513 - Disable dom/indexedDB/ipc/test_ipc.html on Android for mochitest-3 permaorange due to OOMs; r=jmaher
2012-08-17 14:42:26 +01:00
Phil Ringnalda
9208a5089e
Back out e6761635f9cf (bug 695292) for Android mochitest bustage on a CLOSED TREE
2012-08-16 21:35:53 -07:00
Bobby Holley
c64c9eb535
Bug 695292 - Port SimpleTest.executeSoon() to SpecialPowers. r=mrbkap
...
If we just naively use the thread manager to dispatch the event via SpecialPowers,
we cannot avoid the XPCWrappedJS for the runnable being in chrome scope (even if
we pass a content object, we make the call in chrome scope, so we pass a cross-
compartment wrapper). This means that the machinery in
nsXPCWrappedJSClass::CheckForException ends up calling the error reporter for the
SpecialPowers scope, which isn't what we want.
Messing around with the implementation of CheckForException is playing with fire.
So we work around this with an explicit Cu API. :-(
2012-08-16 18:33:27 -07:00
Myk Melez
f4a57d26a2
bug 783391 - NS_ERROR_FILE_IS_DIRECTORY on mochitest-chrome runs; r=adw
2012-08-16 15:20:29 -07:00
Bob Silverberg
e242f37172
Bug 781920 - Remove getElementValue from HTMLElement in Marionette. r=dburns
2012-08-16 17:35:20 -04:00
Jonathan Griffin
99a3e32620
Bug 783132 - bump mozprocess dep and add call to processOutput, r=ahal, DONTBUILD because NPOTB
2012-08-16 10:59:47 -07:00
Jonathan Griffin
4f5253c35b
Bug 783120 - Make datazilla import conditional on options.pref, r=mdas
2012-08-16 10:55:25 -07:00
Ekanan Ketunuti
33433c8f39
Bug 781932 - Update enabled() to be is_enabled to make Selenium API. r=jgriffin
2012-08-15 08:21:41 +07:00
Myk Melez
c45d593ca6
bug 770770: refactor webapp runtime test harness to reduce complexity/special-casing; r=adw
...
--HG--
extra : rebase_source : 183331b565d8c0577c9ba60a89f3c1ea6b11af9a
2012-08-14 15:27:26 -07:00
Bobby Holley
daa51dde26
Bug 781521 - Fix test_SpecialPowersExtension. r=Ms2ger
...
The constructor function lives in content, but it's being invoked from chrome, so the |this| object is actually privileged.
2012-08-14 20:54:33 -07:00
Sanchit Gangwar
943012f622
Bug 781935 - Change the function names in /testing/marionette/client/marionette/tests/unit/test_selected.py. r=jgriffin
2012-08-13 00:24:42 +05:30
David Keeler
d0d3c04507
Bug 749257 - Improve test plugin. r=josh, r=bsmedberg
2012-08-13 10:40:15 -07:00
Ed Morley
e60b46a79a
Bug 782431 - Disable dom/imptests/editing/selecttest/* on Android for being permaorange
2012-08-13 23:09:29 +01:00
Ed Morley
949956ee67
Bug 782328 - Disable dom/imptests/webapps/DOMCore/tests/approved/* on Android for being permaorange; r=Ms2ger
2012-08-13 18:44:25 +01:00
Ed Morley
662f4a94d9
Bug 782275 - Disable devicestorage tests on Android; r=dougt
2012-08-13 18:44:25 +01:00
Jonathan Griffin
4b7c539803
Bug 777842 - make Marionette Python2.6 compatible, r=dburns
2012-08-10 17:04:28 -07:00
Paul Dagnelie
0e22238d23
Bug 779006 - Display pid in xpchsell's check-interactive mode. r=ctalbert
2012-08-13 13:19:11 -04:00
Ed Morley
6f560428f4
Bug 782254 - Disable dom/imptests/webapps/DOMCore/tests/submissions/* on Android for being permaorange; r=Ms2ger
2012-08-13 14:42:34 +01:00
Ryan VanderMeulen
c7b834b885
Merge inbound to m-c.
2012-08-11 22:33:42 -04:00
Masayuki Nakano
577c0446d5
Bug 719320 part.9 Implement nsIDOMWindowUtils::sendWheelEvent() for tests r=smaug, sr=jst
2012-08-12 10:42:36 +09:00
Gregor Wagner
40a59825fa
Bug 781929 - Fix SpecialPowers.addPermission typo. r=bent
2012-08-10 13:55:42 -07:00
Andrew Halberstadt
7c1ba0c892
Bug 770490 - Infrastructure to run reftests on B2G, r=jgriffin
2012-08-10 14:25:20 -04:00
David Burns
42dfe91ce7
Bug 757069: add the ability to get session data out of the browser; r=jgriffin
2012-08-10 11:51:35 -07:00
Jonathan Griffin
f7f07c0f74
Bug 781711 - Make mochitest manifests work properly with both runtests and excludetests, r=jmaher
2012-08-10 09:44:50 -07:00
Ed Morley
d5f3ed0ada
Bug 781837 - Disable dom/imptests/webapps/WebStorage/tests/submissions/* on Android for being permaorange; r=jmaher
2012-08-10 17:36:24 +01:00
Kyle Huey
74b7acf005
Bug 781700: Don't hold strong references to databases from the synchronization queue, so that GCing a database will unblock waiting operations. r=bent
...
--HG--
extra : rebase_source : 2f1b2405ffc91831d33eb91e4b2d61c2b1ac872b
2012-08-10 09:15:02 -07:00
Takanori MATSUURA
cd7ef2415e
Bug 781338 - .mkdir.done file should not be bundled with final package and omnijar archive. r=mhommey
2012-08-10 11:29:58 -04:00
Ed Morley
c858207beb
Bug 781789 - Disable dom/devicestorage/test/test_stat.html on Android for being permaorange; r=jmaher
2012-08-10 15:01:28 +01:00
David Burns
89a26d8081
Bug 781050: Change equals() to __eq__() to be more idiomatic for python r=jgriffin
2012-08-09 13:01:56 -07:00
David Burns
dda7564daf
Bug 738408: Adding the ability to get the page source; r=jgriffin
2012-08-09 12:31:12 -07:00
Ed Morley
b5f4776008
Merge last PGO-green changeset of mozilla-inbound to mozilla-central
2012-08-09 12:46:05 +01:00
Ms2ger
3cd194931f
Bug 781116 - "finished in a non-clean fashion" message should use error() instead of log(); r=ted
2012-08-09 09:11:33 +02:00
Ms2ger
75ab7efb95
Bug 780387 - Part b: Stop using PRIntn; r=bsmedberg
2012-08-09 09:09:40 +02:00
David Clarke
b21f658491
Bug 780031 - Mochitest on b2g reliability improvements, r=jgriffin, DONTBUILD because NPOTB
2012-08-08 17:29:26 -07:00
Ed Morley
2135e5033f
Merge last PGO-green changeset of mozilla-inbound to mozilla-central
2012-08-08 17:18:26 +01:00
Sam Garrett
97fc24847c
Bug 771554 - Update mozbase deps to match in-tree versions, r=jgriffin, DONTBUILD because NPOTB
2012-08-06 17:44:51 -06:00
Mike Hommey
9033126795
Bug 770426 - Replace double colon rules with dependency chains for preprocessing rules. r=khuey
2012-07-23 07:42:22 +02:00
Ryan VanderMeulen
0726b1fe02
Merge m-c to inbound.
2012-08-06 20:26:58 -04:00