Gregory Szorc
94d0bd111f
Bug 1208320 - Produce cppunittest and reftest packages via Python; r=glandium
...
With this change, all test ZIP archives are now generated via Python and
mozpack.
This change does not change I/O or file copy behavior at all. There is
still a lot of room for eliminating extra file copies.
--HG--
extra : commitid : 9mWdtDK6wAb
extra : rebase_source : 0f19c627d64d22bf9d65161d4f7df7c9778dea3c
2015-09-30 09:58:31 -07:00
Gregory Szorc
fe96a68dba
Bug 1208320 - Produce common tests archive via Python; r=glandium
...
This doesn't change I/O or copy behavior at all. But it does remove a
one-off make rule.
--HG--
extra : commitid : X0efdFHA0k
extra : rebase_source : c7cb8616461eccd1ff7f8eb3b409bd4944c9e1ec
2015-09-30 17:38:53 -07:00
Gregory Szorc
1c2fb95934
Bug 1208320 - Produce talos test archive without staging files; r=glandium
...
This is pretty straightforward. This saves ~26 MB of file copies.
--HG--
extra : commitid : ItghoP73zS8
extra : rebase_source : 9656719a6459c1e6fa28165591722fe00d6d9b1d
2015-09-30 09:48:04 -07:00
Gregory Szorc
1d1f8b07c4
Bug 1208320 - Produce web-platform test archive without staging; r=glandium
...
The web-platform test archive now builds without any staging at all.
This saves ~103 MB of file copies on my machine.
The testing/web-platform/Makefile.in serves no purpose after this
change, so it and all references to it have been removed.
--HG--
extra : commitid : HDHGG3QGVBH
extra : rebase_source : dd7302aad96b46932aa00e4e66918c8077475b10
2015-09-30 09:47:22 -07:00
Gregory Szorc
e715f404c4
Bug 1208320 - Produce mochitest test archive without staging test files; r=glandium
...
This is very similar to what we did for xpcshell. Like xpcshell, there
are still some staged files. However, about 73MB of copies are
eliminated with this change. On my machine, overall execution time of
test packaging appears to decrease, although CPU usage is up slightly.
--HG--
extra : commitid : 5dy340X80J9
extra : rebase_source : d37be29367b17e6c1d9c885ab4705932b7a42b39
2015-09-30 09:46:35 -07:00
Gregory Szorc
a9b7ca4989
Bug 1208320 - Produce xpcshell archive without staging test files; r=glandium
...
This commit produces the xpcshell test archive without staging 5000+
xpcshell test files first.
We teach the archiver to ignore .mkdir.done files.
The xpcshell Makefile.in still stages some files. This is less than
ideal. However, it is a small handful of files and shouldn't add too
much overhead.
This appears to not impact overall CPU usage significantly on my
machine, despute using Python instead of `zip`. It does reduce I/O
by ~25MB by avoiding the staging copy.
--HG--
extra : commitid : IwvLaYvAbFt
extra : rebase_source : a690ae4b1adbabd491851a2479fa66d81241601b
2015-09-30 09:36:16 -07:00
Gregory Szorc
212a2d7513
Bug 1208320 - Produce mozharness test archive via mozpack; r=glandium
...
Test archive generation currently copies a bunch of files into a staging
area then runs `zip` to produce ZIP files. There are 2 concerns with
this approach:
1) We incur a lot of extra I/O to copy files so everything is
rooted in a single tree so the `zip` invocation and paths are
simple.
2) ZIP files inherit properties from the local filesystem (including
mtime), making ZIP files non-deterministic.
This commit introduces a new mozbuild action for producing test
archives. It does so using the mozpack file finder and JAR writer,
which are used throughout the build to deterministically
produce ZIP/JAR files from files in multiple source directories.
We implement support for producing the mozharness archive. This archive
does not involve files that are staged, so no I/O is saved. In fact,
the switch from `zip` to Python likely makes this slightly slower.
However, we do have deterministic archives now.
Additional archives will be ported over in subsequent commits.
--HG--
extra : commitid : H1BOidPDZST
extra : rebase_source : 120e2bfea921e5fb3a8d97b2dd0227edce452cfd
2015-09-30 11:34:33 -07:00
Bas Schouten
55fc81be8b
Bug 1208465 - Part 2: Disable using Direct2D when 1.1 is unavailable. r=jrmuizel
2015-09-25 13:30:57 +00:00
Chris Manchester
059807dbd8
Bug 1209701
- Don't require platforms as input to |./mach try| if set in the environment. r=jgraham
...
--HG--
extra : commitid : amxtVwsmei
2015-09-30 16:38:20 -07:00
Chris Manchester
7bc85f9727
Bug 1184405 - Use file metadata from files changed in the current branch in mach try when no other arguments are present. r=jgraham
...
--HG--
extra : commitid : IS04VgBwDxE
2015-09-30 16:38:20 -07:00
Catalin Badea
9e76d2c1c6
Bug 1188545 - Fix wpt test ServiceWorkerGlobalScope/unregister.https.html. a=testonly
2015-09-30 19:11:03 -04:00
Catalin Badea
fe19d1997c
Bug 1188545 - Make skip-waiting-using-registration.html wpt test pass. a=testonly
2015-09-30 19:11:03 -04:00
Catalin Badea
deb9499875
Bug 1188545 - Update expected results for some service worker tests. a=testonly
2015-09-30 19:11:03 -04:00
J. Ryan Stinnett
5a0cce2986
Bug 1208166 - Re-enable View Source in Tab for all channels. r=mconley
...
--HG--
extra : transplant_source : %7E%E7%DB%86%FF%ED%B9%F4P%FA%60%10k%89%F2%C2%BF%FE%B3V
2015-09-29 16:48:22 -05:00
Dylan Roeh
b5694e2f25
Bug 1210162 - Add --suite reftest to REMOTE_REFTEST in testsuite-targets.mk. r=jgraham
2015-09-30 16:09:17 -05:00
Jordan Lund
520f9b8623
Bug 1199720 - Setup builds for b2gdroid, taskcluster and mozharness bits, r=dustin
2015-09-30 13:57:52 -07:00
Jordan Lund
cd9b824499
Bug 1163084 - Releng work for producing dummy partner Android APK, r=dustin
...
--HG--
rename : testing/mozharness/configs/builds/releng_sub_android_configs/64_api_11.py => testing/mozharness/configs/builds/releng_sub_android_configs/64_api_11_partner_sample1.py
rename : testing/taskcluster/tasks/builds/android_api_11.yml => testing/taskcluster/tasks/builds/android_api_11_partner_sample1.yml
2015-09-30 13:56:39 -07:00
David Burns
a7d8cd3acc
Bug 1209698: Bump version numbers for Marionette packages; r=jgriffin
...
The version numbers have been moved to be major.minor.patch to allow
better versioning moving forward.
--HG--
extra : commitid : Lm21l6zZmge
extra : rebase_source : 432a27f8727106a78114b745aca019771f254e93
2015-09-30 13:23:50 +01:00
Wes Kocher
6fbdec2422
Backed out 12 changesets (bug 1188545) for test_fetch_cors failures CLOSED TREE
...
Backed out changeset e04738ee72a3 (bug 1188545)
Backed out changeset 1989893b59de (bug 1188545)
Backed out changeset 11ff29cc25d8 (bug 1188545)
Backed out changeset 4b6bdf859845 (bug 1188545)
Backed out changeset 76eb7ffeca2a (bug 1188545)
Backed out changeset 4473e036b52e (bug 1188545)
Backed out changeset 2a28cb794b23 (bug 1188545)
Backed out changeset 1fa2f55727f3 (bug 1188545)
Backed out changeset 032f4c24fc34 (bug 1188545)
Backed out changeset 4be675dc1b37 (bug 1188545)
Backed out changeset d5d05def5b17 (bug 1188545)
Backed out changeset e94f12b0bcf3 (bug 1188545)
2015-09-30 11:11:47 -07:00
Tooru Fujisawa
c09bf851bf
Bug 1207499 - Part 10: Remove use of expression closure from testing/. r=jmaher
...
--HG--
extra : commitid : JE0Z0vdpjeI
extra : rebase_source : 3aa4d858e141afceec370343630ebd1d6f2a0d52
2015-09-23 18:42:19 +09:00
Dustin J. Mitchell
3b03b1e537
Bug 1208029: bump image version numbers to capture subversion install; r=ehsan
...
--HG--
extra : commitid : 2QC4Cw4AXrJ
extra : rebase_source : 3bd0eb07092e96b0551b0eb8d7a47c6ad81b2f5d
extra : histedit_source : 399916da3b8232606e4ec959188cf2974be521bb
2015-09-30 09:11:59 -04:00
Ting-Yu Lin
9a643f53d9
Bug 1164124 - Add using_prefs context manager. r=jgriffin
...
Add get_pref(), set_pref(), set_prefs() to make manipulate preferences
easier.
enforce_gecko_prefs() did the similar job as set_prefs(), but it will
restart the browser if a preference to be set are different from what is
already set in the system. Not all gecko preferences require a restart
to work. Using set_prefs() should make testing faster. See bug 1048554.
--HG--
extra : commitid : 8zY9oaHkSW1
extra : rebase_source : 787114d94f50e9f132fb7d5898cecf104e281700
2015-09-30 16:26:58 +08:00
Bill McCloskey
633d4a3ecf
Bug 967873 - Test changes for async removeTab (r=Gijs)
2015-10-01 21:18:05 -07:00
Wes Kocher
331a00aba0
Merge m-c to fx-team, a=merge
2015-09-30 13:57:10 -07:00
Rail Aliiev
5978e611c5
Bug 1203187 - Update b2g_branch_repos.py script and config to handle b2g 2.5 branching. r=jlund DONTBUILD
2015-09-30 06:30:17 -04:00
Andreas Pehrson
d22ffac72e
Bug 1155923 - Fix WPT unexpected-passes. r=bustage CLOSED TREE
...
--HG--
extra : commitid : B3luhK5Cw5
2015-09-30 16:40:25 +08:00
Henrik Skupin
b1e45adbad
Bug 1209209 - Create functional.py script for firefox-ui-tests to handling Firefox builds for Jenkins. r=armenzg DONTBUILD
2015-09-30 09:18:48 +02:00
Martin Thomson
d90d77bb33
Bug 1155923 - Updating webplatform-tests, r=jib
...
--HG--
extra : transplant_source : %9E%968%DC%AD%1F%DF%DB%3A%9C%1A%0F%E1%85%CFa%09oW%F0
2015-09-28 11:25:04 -07:00
Wes Kocher
6feb6f6051
Merge m-c to inbound, a=merge
2015-09-29 16:13:55 -07:00
Wes Kocher
8e7c30dca8
Merge b2ginbound to central, a=merge
2015-09-29 16:04:41 -07:00
Wes Kocher
bfea98b549
Merge fx-team to central, a=merge
2015-09-29 15:56:09 -07:00
Wander Lairson Costa
afe68eef72
backout 9ea9e4a8a729 because it breaks nexus builds.
...
--HG--
extra : commitid : IZAZTH020AU
2015-09-29 09:10:20 -03:00
Carsten "Tomcat" Book
2696da0f1c
Merge mozilla-central to b2g-inbound
2015-09-29 12:43:31 +02:00
Wander Lairson Costa
47191bf610
Bug 1207986 part 3: Exit script if aws fails to list backup file. r=garndt
...
As the aws command line tool call is piped, its status is lost, but the
net result is an empty variable assigment. We take advantage of this to
detect errors in the aws tool.
--HG--
extra : commitid : HDjJMJ71GnE
2015-09-29 07:28:04 -03:00
Wander Lairson Costa
c8e39955c7
Bug 1207986 part2: Install openjdk in the phone builder docker image. r=garndt
...
This is necessary for FOTA builds. Increase the version number
to
0.0.22 because 0.0.21 was busted.
--HG--
extra : commitid : GhfgSBuyWxg
2015-09-29 07:28:04 -03:00
Wander Lairson Costa
901eb75699
Bug 1207986 part1: turn phone-builder cmd line parameters optional. r=garndt
...
For any parameter we don't pass in the command line, take from the
environment.
--HG--
extra : commitid : 9ru0islnTP9
2015-09-29 07:28:04 -03:00
Carsten "Tomcat" Book
b63d7b04fc
merge mozilla-inbound to mozilla-central a=merge
2015-09-29 12:00:25 +02:00
Chris Manchester
6a45b54812
Bug 1209312 - Accept test_objects in testing/xpcshell/mach_commands.py to support |./mach test|. r=jgraham
...
--HG--
extra : commitid : 7hOvYy0xdzm
2015-09-29 12:59:55 -07:00
Wes Kocher
e03ead4753
Merge m-c to b2ginbound, a=merge
2015-09-28 16:32:01 -07:00
Wes Kocher
889e270547
Merge inbound to central, a=merge
2015-09-28 15:36:38 -07:00
Tim Chien
c251097169
Bug 1160923 - [B2G] Waiting for explicit mozContentEvent before sending out mozChromeEvents, r=vingtetun, f=ochaumeau
2015-09-28 09:27:49 -07:00
Carsten "Tomcat" Book
363e40e298
merge mozilla-inbound to mozilla-central a=merge
2015-09-28 14:13:24 +02:00
Carsten "Tomcat" Book
601264c5c1
Merge mozilla-central to fx-team
2015-09-28 14:19:22 +02:00
Kaustabh Datta Choudhury
5270e212b7
Bug 1162003 - Enable run-by-dir mode on Fx desktop mac debug platform and re-enable a few tests. r=jmaher
2015-09-28 10:54:22 -04:00
Carsten "Tomcat" Book
191ce6efd0
Merge mozilla-central to fx-team
2015-09-29 12:41:12 +02:00
Alexandre Poirot
bbe2020ba5
Bug 1207653 - Pass build_url/img_url to post-build tasks. r=garndt
2015-09-29 03:02:48 -07:00
Alexandre Poirot
039093bc70
Bug 1207653 - Build simulator from mulet. r=garndt,jryans
2015-09-29 03:02:48 -07:00
Alexandre Poirot
0896aa8eee
Bug 1208018 - Improve marionette stack info and dump it when executeJSScript throws. r=jgriffin
2015-09-29 03:02:48 -07:00
Jan Odvarko
d325233684
Bug 1132203 - Load JSON viewer dynamically on demand; r=jryans
2015-09-28 13:34:03 +02:00
Jan Odvarko
ce3fd64696
Bug 1132203 - Tests for JSON Viewer; r=jryans
2015-09-28 13:33:45 +02:00
Mike de Boer
7edbc38b65
Backed out changeset 77b2f22f48c7 (bug 1140512) due to invalid fix. rs=me,backout.
2015-09-28 12:55:46 +02:00
Karl Tomlinson
7459312fc7
test for bug 864171 and bug 1053011 r=padenot
...
--HG--
extra : rebase_source : db19b5fa0fdfb62516befd2db20192272cba9993
2015-09-24 19:07:29 +12:00
Wes Kocher
a91deab1f2
Merge m-c to fx-team, a=merge CLOSED TREE
2015-09-25 18:22:43 -07:00
Alexandre Lissy
329962a52e
Bug 1206368 - Nexus 4 Kitkat build on TaskCluster. r=wcosta,mshal
2015-09-25 01:49:00 +02:00
Wes Kocher
40f2f82907
Merge m-c to inbound, a=merge
2015-09-25 18:02:38 -07:00
Dustin J. Mitchell
16d2ad1ff9
Bug 1189892, 1208029: add linux32 support; r=ted.mielczarek
...
Add new tasks for the "Linux" platform. These run on the same docker image as
the Linux64 builds, but that image has been modified to contain a bunch of
*.i686 packages required to cross-compile for i686. Due to yum's propensity
for resolving dependencies without regard to architecture, with this patch the
system-setup.sh script lists both architectures of each file explicitly.
This also leaves `gcc` installed for user convenience in installing Python
extensions, NPM modules, etc.
This also includes 'subversion' for clang builds (bug 1208029)
--HG--
extra : commitid : GfCTCchyHo6
extra : rebase_source : 8b15da0ed7adefa084b7195a98f63f73564a3d94
2015-09-21 17:39:44 -04:00
Mike Shal
3c752ad87d
Bug 1208643 - Show B2G ICS Emulator TC builds on treeherder; r=wcosta
2015-09-25 15:19:35 -04:00
Carsten "Tomcat" Book
ae6755a03e
Merge mozilla-central to mozilla-inbound
2015-09-28 14:18:24 +02:00
Armen Zambrano Gasparnian
f180b5ab22
Bug 1207691 - Do not run screenresolution for talos Mac jobs when in developer mode. DONTBUILD. r=jmaher
...
--HG--
extra : commitid : 88JuYUsNTnr
2015-09-25 13:03:49 -04:00
Nigel Babu
d9d5ae984a
Merge mozilla-central to mozilla-inbound, CLOSED TREE
2015-09-25 11:14:09 +05:30
Nigel Babu
84520cdcf7
Backed out changeset a515a700781a (bug 1207986) on suspicion of causing b2g device build bustages
...
CLOSED TREE
2015-09-25 10:02:30 +05:30
Wes Kocher
0d3937e34d
Merge b2ginbound to central, a=merge
2015-09-24 16:57:38 -07:00
Wander Lairson Costa
34798869bb
Bug 1207986: Add java-openjdk package to phone-builder image. r=garndt
...
This package is necessary to build Aries fota updates.
--HG--
extra : commitid : DAKZqS5wKeJ
2015-09-24 13:51:31 -03:00
Carsten "Tomcat" Book
2376775adf
merge mozilla-inbound to mozilla-central a=merge
2015-09-24 12:03:40 +02:00
Gregory Szorc
fda95b5b85
Bug 1207912 - Use multiple rules for test archive generation; r=glandium
...
Previously, we had a single make target and rule for generating all test
archives. These tasks can be performed in parallel. This commit
refactors the make file to add multiple targets for each archive and
thus enables test archives to be generated concurrently.
On my MacBook Pro, this reduces `make package-tests -j8` from ~78s to
~50s, a reduction of ~28s, or ~36%. Reduction on machines without SSDs
(like many builders in automation) will likely be less. Although, the
page cache should service most file reads during archiving since these
files were just staged, so hopefully the gains are in the same ballpark.
--HG--
extra : commitid : 1PsEuE8KS7J
extra : rebase_source : b4ed9e593775d96a994b7076c6814d18ca277d8e
extra : histedit_source : f33af390df36d8ffe98df4f4329fa50a7cde6b0c
2015-09-23 23:28:19 -04:00
Gregory Szorc
935d1d8b76
Bug 1207912 - Add a "stage-all" target; r=glandium
...
Upcoming work will introduce multiple targets for building test
archives. To prepare for this, we introduce a phony target that
tracks the staging of all test files so each target can gate on a common
prerequisite.
--HG--
extra : commitid : KcdyQv7sZqk
extra : rebase_source : a64336881990d65e11451b3f3858e4ff5c200eca
extra : histedit_source : 3cbbbd73d31f82108125dd6593c5974f2f42184c
2015-09-23 23:00:14 -04:00
Wes Kocher
e4fc739f11
Merge m-c to fx-team, a=merge CLOSED TREE
2015-09-23 13:26:00 -07:00
Wes Kocher
0625b82581
Merge b2ginbound to central, a=merge CLOSED TREE
2015-09-23 13:18:17 -07:00
Carsten "Tomcat" Book
774fe78402
Merge mozilla-central to b2g-inbound
2015-09-23 12:35:32 +02:00
Carsten "Tomcat" Book
292376c78a
merge mozilla-inbound to mozilla-central a=merge
2015-09-23 12:28:10 +02:00
Andrew Comminos
25a127c1a2
Bug 1170342 - Don't disable XInput2 for mochitests on GTK3, off by default now. r=karlt
2015-09-22 22:25:23 -07:00
Wes Kocher
04128a0432
Merge m-c to inbound, a=merge
2015-09-24 17:14:17 -07:00
Henrik Skupin
439f56e019
Bug 1208184 - Make download of tooltool.py customizable via a config setting. r=jlund DONTBUILD
2015-09-25 00:19:05 +02:00
Rail Aliiev
e61511e53b
Bug 1188483 - desktop_l10n.py should support --locale $locale:$revision r=jlund
2015-09-24 17:11:26 -04:00
Rail Aliiev
82ce6f1e3e
Bug 1163998 - Balrog rule locking doesn't work in merge scripts. r=jlund DONTBUILD
2015-09-24 17:10:11 -04:00
aleth
8aa65605fb
Bug 1193257
- Make xpcshell harness command line arguments path filters for tests: followup to fix 'make xpcshell-tests'. r=ahal
...
--HG--
extra : rebase_source : e26ede5c0101e589c96666e1dde654ffc6a3f5b5
2015-09-24 19:42:35 +02:00
Michael Layzell
59b6510302
Bug 1207233 - Don't provide a default content-type header if user calls XHR.setRequestHeader('Content-Type', ''), r=jduell
2015-09-24 16:54:11 -04:00
Bill McCloskey
88501da12a
Bug 1197475 - [webext] Add test for browser.storage.local, fix a few bugs in it (r=gabor)
2015-09-23 17:18:30 -07:00
Bill McCloskey
d8c4e2691e
Bug 1190662 - [webext] Browser action popup HTML should be reloaded each time popup is opened (r=gabor)
2015-09-23 17:18:26 -07:00
Rail Aliiev
56fa38159f
Bug 1206664 - Tracking bug for Nov-02-2015 migration work. r=jlund DONTBUILD
2015-09-23 16:49:48 -04:00
aleth
c2bf10b377
Bug 1193224
- Remove --tests-root-dir option: followup to remove it from testsuite-targets.mk. r=ahal
...
--HG--
extra : source : b3870c695f4f0efcdfcdd31be9a1eb82ae57bfe7
2015-09-23 12:20:12 +02:00
John Dai
5d054699d5
Bug 1204822 - Add LD_LIBRARY_PATH in build script. r=dustin, r=jlund
...
--HG--
extra : source : f4233421a0091c7ff9da20e917e026bf60f93c8f
2015-09-22 19:20:00 +02:00
Rail Aliiev
762c734daf
Bug 1195397 - for aurora -> beta: l10n-mozconfig needs "ac_add_options --with-branding=browser/branding/aurora" removed. r=jlund DONTBUILD
2015-09-23 16:45:36 -04:00
Wes Kocher
15e1bb7d7a
Merge m-c to inbound, a=merge CLOSED TREE
2015-09-23 13:23:42 -07:00
Joel Maher
183c299aee
Bug 1191952 - fix commas in json. CLOSED TREE
2015-09-23 14:46:29 -04:00
Andrea Marchesini
144da2ac21
Bug 1205676 - Enable WPT service-worker/unregister-then-register-new-script.https.html in e10s, r=nsm
2015-09-23 19:40:51 +01:00
Kaustabh Datta Choudhury
d64ac7ea6b
Bug 1162003 - Enable run-by-dir mode for mochitest_chrome on Fx desktop opt builds. r=jmaher
2015-09-23 13:39:45 -04:00
Joel Maher
6d69755c56
Bug 1191952 - enable dromaeo dom on linux. r=armenzg
2015-09-23 13:39:42 -04:00
Armen Zambrano Gasparnian
cf402a9a94
Bug 1203085 - Support fetching installer and test url from TaskCluster. r=jlund
...
If a Buildbot test job is scheduled through TaskCluster (The Buildbot Bridge supports this),
then the generated Buildbot Change associated to a test job does not have the installer and
test url necessary to Mozharness to run the test job.
Since we can't modify how a test job is called on Buildbot (we can't switch from
--read-builbot-config to --installer-url and --test-url), we have to detect that there is
a 'taskId' defined for the test job (this indicates that the job was scheduled through the BBB)
and based on suc 'taskID' we can determine the parent task and the artifacts it uploaded.
Changes to ScriptMixin:
* Refactor _retry_download_file() to _retry_download()
* If no file is specified when calling_retry_download() we call _urlopen() instead of _download_file()
* Add load_json_url() method to fetch the contents of a json file without writing to disk
Changes to TestingMixin:
* If the job is triggered through Buildbot we look for the Changes object, otherwise, we look
for artifacts of the parent task
* Added functions find_artifacts_from_buildbot_changes (original behaviour)
and find_artifacts_from_taskcluster (functionality via TaskClusterArtifactsFinderMixin)
* Call self.exception() instead of raising exceptions + minor fixes
New TaskClusterArtifactsFinderMixin:
* It allows any inheriting class to find the artifacts of the build job which triggers this test job
--HG--
extra : commitid : 2yJfZgUGzbb
extra : rebase_source : 12e0e2aa46f4607c5c563317df592b0e5c805746
2015-09-21 16:02:20 -04:00
Alexandre Lissy
056fdaf710
Bug 1206379 - Fix blobfree distribution collect for nexus-5-l. r=wcosta
2015-09-22 04:13:00 +02:00
Michael Ratcliffe
3efb3a9e6f
Bug 1203520 - We need a DevTools ESLint plugin containing our ruleset r=gps
...
--HG--
extra : commitid : FrMOnVBUxmY
extra : rebase_source : c38511e94177f651a0decad41180991c54cb0f33
2015-09-30 14:44:48 +01:00
Nick Alexander
960eeeb471
Bug 1204260 - Pre: Don't expose ANDROID_{BUILD,PLATFORM}_TOOLS. r=glandium,gbrown
...
This stops exposing ANDROID_BUILD_TOOLS and ANDROID_PLATFORM_TOOLS via
AC_SUBST. We expose most tools already, and this adds EMULATOR, and
consumes it (and ADB) where appropriate.
--HG--
extra : commitid : 9u0pibgE00
extra : rebase_source : 04e420c53d1d75ab8f055436d7dd69e148168c67
extra : histedit_source : a930a34f4dda44ee91b52caf68e02877b0502f01
2015-09-12 14:59:31 -04:00
Dave Townsend
7c204151f3
Bug 1192924: Check for updated system add-ons and download and install them. r=rhelmer
...
This performs the update check for system add-ons. It runs as part of the daily
add-on update checks similar to hotfix checks. Currently no URL is set so builds
won't actually start checking yet.
I've taken a few shortcuts here by only staging updates and needing a restart to
install as well as always downloading updates rather than using existing local
copies. At least the latter probably needs fixing before turning this on but
it makes more sense to iterate on those in tree.
--HG--
rename : toolkit/mozapps/extensions/test/xpcshell/data/system_addons/app1/features/system1@tests.mozilla.org.xpi => toolkit/mozapps/extensions/test/xpcshell/data/system_addons/system1_1.xpi
rename : toolkit/mozapps/extensions/test/xpcshell/data/system_addons/app3/features/system1@tests.mozilla.org.xpi => toolkit/mozapps/extensions/test/xpcshell/data/system_addons/system1_1_badcert.xpi
rename : toolkit/mozapps/extensions/test/xpcshell/data/system_addons/app2/features/system1@tests.mozilla.org.xpi => toolkit/mozapps/extensions/test/xpcshell/data/system_addons/system1_2.xpi
rename : toolkit/mozapps/extensions/test/xpcshell/data/system_addons/app1/features/system2@tests.mozilla.org.xpi => toolkit/mozapps/extensions/test/xpcshell/data/system_addons/system2_1.xpi
rename : toolkit/mozapps/extensions/test/xpcshell/data/system_addons/app2/features/system3@tests.mozilla.org.xpi => toolkit/mozapps/extensions/test/xpcshell/data/system_addons/system3_1.xpi
extra : commitid : Ex9NNNduxhK
extra : rebase_source : 99088404019f53a8a76105c66edce404f2c7e454
2015-09-10 10:57:39 -07:00
Iaroslav (yarik) Sheptykin
3d26e8454b
Bug 1140512 - Ensure FindBar communicates properly with content after remoteness change. r=mikedeboer
2015-09-19 20:22:21 +02:00
Chris Manchester
60b920756b
Bug 1203686 - Add git support to mach try's ability to find files changes on the current branch. r=jgraham
...
--HG--
extra : commitid : KLt1KderUEx
2015-10-01 13:12:56 -07:00
Ehsan Akhgari
4ec48ba0bb
Bug 1209356 - Don't run make check on Mac debug static analysis builds; r=glandium
...
These checks are pointless.
2015-09-28 22:40:47 -04:00
Wes Kocher
1c1aa1981c
Merge m-c to inbound, a=merge
2015-09-28 16:31:29 -07:00
James Graham
97fc44fc0a
Bug 1209297 - Update web-platform-tests expected data to revision 2869a58fd81da41f9f904441ff39f9398fba53bc, a=testonly
2015-09-28 23:03:12 +01:00
James Graham
7a00fac34e
Bug 1209297 - Update web-platform-tests to revision 2869a58fd81da41f9f904441ff39f9398fba53bc, a=testonly
2015-09-28 23:02:37 +01:00
Gijs Kruitbosch
73f41e99fe
Bug 636905 - tangent: allow using JS to select clickable element on the content side, r=mconley
...
--HG--
extra : commitid : DUlO7xnZUiO
extra : rebase_source : e617c8ef5c244f2b5e1a7080b76bbdb204df9b29
2015-09-26 14:57:03 +01:00
David Burns
9959a7982f
Bug 1201036: Bump marionette client and marionette driver for releases; r=jgriffin
...
--HG--
extra : commitid : 4hSlrLSpGRV
extra : rebase_source : 6afc9e3eb9807927a25837644a09547f1c1f9c2f
2015-09-28 21:20:29 +01:00
Kyle Huey
ca2010bbb9
Bug 1208687: Only discard events from the outermost queue. r=ehsan
...
When workers shut down we discard the event queue rather than running it to completion. Originally workers managed their event queue themselves and would simply iterate through the array of events and cancel them all. After bug 914762 this was done by setting a (thread-)global "canceling" flag and then calling NS_ProcessPendingEvents. But this neglects that a shut down request can be received while the worker is in a sync queue. In this case, calling NS_ProcessPendingEvents will process any events pending in the sync queue, which is *not* the queue we need to cancel.
The fix is, if we are in a sync queue when NotifyInternal is called, to defer clearing the queue until the top-most sync queue is destroyed and we are about to return to the regular event queue. Only then can we call NS_ProcessPendingEvents to clear out the queue. Because we can never process any events from this queue while sync queues are active, the timing of the mass cancellation is unchanged from the perspective of events in the regular queue.
2015-09-28 14:34:28 -07:00
Wes Kocher
fccf197b57
Backed out changeset 9ed7f553c3de (bug 1208431) for mass bustage CLOSED TREE
2015-09-28 13:22:46 -07:00
Dustin J. Mitchell
932dfaabb2
Bug 1189892: actually run linux(32) jobs everywhere; r=ted.mielczarek
...
This cleans up some redundant keys in `branches/try/job_flags.yml`, spells
the platform correctly (`linux`, not `linux32`), and defines the platform in
`base_job_flags.yml`
--HG--
extra : commitid : Ke1t5QKYYw9
extra : rebase_source : b95739ed88360f55cf7e8614e3e69c15f924c237
2015-09-28 11:50:39 -04:00
Nick Alexander
c8ee8a09cf
Bug 1108782 - Part 1: straighten out Java classpaths. r=glandium
...
This commit is us getting out of our own way. We were specifying
-classpath twice, once in $(JAVAC) and once in java-build.mk. Only
the latter of these is active. This a problem for ANDROID_EXTRA_JARS
-- those JARs should be on the classpath and input to $(DX) -- and
JARs that should be on the classpath but *not* input to $(DX). This
commit removes the global flags to $(JAVAC) and adds
JAVA_{BOOT}CLASSPATH_JARS. This required some hijinkery moving
wildcards to moz.build files, but everything seems to work.
As well as clarifying some parts of the build, part 2 uses this work
to modify the classpath.
--HG--
extra : commitid : 25Ft0BFs88O
extra : rebase_source : 05e3d1da8d42fa89d06ef48baee17bb77df5bd59
extra : histedit_source : 95b82309aca15c5a3c5f5a0eafbdcf75c5e8dfc0
2015-08-31 13:35:05 -07:00
Wes Kocher
d4897fa1ef
Backed out changeset feceb41f1c3c (bug 1185244) for breaking running tests locally CLOSED TREE a=backout
2015-09-22 17:08:37 -07:00
Wes Kocher
08ffd204f8
Merge inbound to central, a=merge CLOSED TREE
2015-09-22 16:42:03 -07:00
Wes Kocher
fd19a9f213
Merge fx-team to central, a=merge
2015-09-22 16:39:01 -07:00
Wes Kocher
468b697f04
Backed out 3 changesets (bug 1192924) for Android bustage CLOSED TREE
...
Backed out changeset 30d612836685 (bug 1192924)
Backed out changeset a6860f880e01 (bug 1192924)
Backed out changeset 10e1fa2cc23a (bug 1192924)
--HG--
rename : toolkit/mozapps/extensions/test/xpcshell/data/system_addons/system1_1.xpi => toolkit/mozapps/extensions/test/xpcshell/data/system_addons/app1/features/system1@tests.mozilla.org.xpi
rename : toolkit/mozapps/extensions/test/xpcshell/data/system_addons/system2_1.xpi => toolkit/mozapps/extensions/test/xpcshell/data/system_addons/app1/features/system2@tests.mozilla.org.xpi
rename : toolkit/mozapps/extensions/test/xpcshell/data/system_addons/system1_2.xpi => toolkit/mozapps/extensions/test/xpcshell/data/system_addons/app2/features/system1@tests.mozilla.org.xpi
rename : toolkit/mozapps/extensions/test/xpcshell/data/system_addons/system3_1.xpi => toolkit/mozapps/extensions/test/xpcshell/data/system_addons/app2/features/system3@tests.mozilla.org.xpi
rename : toolkit/mozapps/extensions/test/xpcshell/data/system_addons/system1_1_badcert.xpi => toolkit/mozapps/extensions/test/xpcshell/data/system_addons/app3/features/system1@tests.mozilla.org.xpi
2015-09-22 11:02:55 -07:00
Michael Layzell
3c93c54b80
Bug 918742 - Correct handling of author-supplied charsets in XMLHttpRequest, r=bz
2015-09-22 12:26:15 -04:00
Wander Lairson Costa
835690cd3b
Bug 1166217: Move phone-builder image to docker hub.
...
quay.io is gone, long live docker hub.
--HG--
extra : rebase_source : ed2d2758db1f70a51484487155e345120f616dc6
2015-09-17 17:41:06 +02:00
Carsten "Tomcat" Book
651a168616
merge mozilla-inbound to mozilla-central a=merge
...
--HG--
rename : toolkit/devtools/server/actors/styleeditor.js => devtools/server/actors/styleeditor.js
rename : toolkit/devtools/server/actors/stylesheets.js => devtools/server/actors/stylesheets.js
rename : toolkit/devtools/gcli/commands/screenshot.js => devtools/shared/gcli/commands/screenshot.js
2015-09-22 12:35:13 +02:00
Nigel Babu
8ca027bc67
Backed out changeset a59090148268 (bug 1204822) for B2G ICS build bustage
2015-09-22 09:58:11 +05:30
Kartikaya Gupta
905fe40dd6
Bug 1206858 - Ensure that multiple concurrent calls to waitForAllPaints are handled properly. r=mattwoodrow
...
--HG--
extra : commitid : 1em2BrTkdxf
2015-09-22 09:01:08 -04:00
Ehsan Akhgari
c810a2f09a
Bug 1203390 follow-up: Move the mozilla-central/job_flags.yml entires to base_jobs.yml
2015-09-22 08:50:06 -04:00
Ehsan Akhgari
987e02c361
Bug 1206456
- Stop forcing mozilla-central Linux64 opt static analysis builds to be clobber; r=dustin
...
--HG--
rename : testing/taskcluster/tasks/builds/opt_linux64_st-an.yml => testing/taskcluster/tasks/builds/opt_linux64_st-an_clobber.yml
2015-09-22 08:39:33 -04:00
Ehsan Akhgari
e4e5a2d371
Bug 1203397 - Show Linux64 static analysis builds as "S" in TreeHerder; r=dustin
2015-09-22 08:38:31 -04:00
Ehsan Akhgari
c99d450aee
Bug 1203390 - Add support for Linux64 Static Analysis opt builds using TaskCluster; r=dustin
2015-09-22 08:38:25 -04:00
Carsten "Tomcat" Book
6d064687ac
Merge mozilla-central to mozilla-inbound
2015-09-22 12:49:44 +02:00
Julian Seward
b3bc139b1e
Bug 1185244 - Improve mach support for running mochitests on Valgrind. r=jgraham, njn.
2015-09-22 12:00:57 +02:00
Jan-Ivar Bruaroey
1c3f3f8536
Bug 1206982 - getUserMedia s/PermissionDeniedError/SecurityError/. r=jesup
...
--HG--
extra : transplant_source : %BB%1A%10%27%95%15%E0%A4%F3%F4%93%83%26%B91%CA%C8%9Cn%B1
2015-09-21 20:57:12 -04:00
J. Ryan Stinnett
4f1af0e003
Bug 912121 - Update misc. DevTools paths and comments. rs=devtools
...
--HG--
extra : commitid : BSf4D59s9HF
extra : rebase_source : 4d14e1aa3ad93bbb426861336e8b703bc1e0b3af
2015-09-21 12:07:31 -05:00
J. Ryan Stinnett
efe328f1b2
Bug 912121 - Rewrite require / import to match source tree. rs=devtools
...
In a following patch, all DevTools moz.build files will use DevToolsModules to
install JS modules at a path that corresponds directly to their source tree
location. Here we rewrite all require and import calls to match the new
location that these files are installed to.
--HG--
extra : commitid : F2ItGm8ptRz
extra : rebase_source : b082fe4bf77e22e297e303fc601165ceff1c4cbc
2015-09-21 12:04:18 -05:00
Carsten "Tomcat" Book
e7a3664e1e
Backed out 1 changesets (bug 1166217) for likely causing Aries Dogfood Build Bustage
...
Backed out changeset 86fb1100a8cf (bug 1166217)
2015-09-21 15:18:00 +02:00
Dave Townsend
d039cf8d34
Bug 1192924: Check for updated system add-ons and download and install them. r=rhelmer
...
This performs the update check for system add-ons. It runs as part of the daily
add-on update checks similar to hotfix checks. Currently no URL is set so builds
won't actually start checking yet.
I've taken a few shortcuts here by only staging updates and needing a restart to
install as well as always downloading updates rather than using existing local
copies. At least the latter probably needs fixing before turning this on but
it makes more sense to iterate on those in tree.
--HG--
rename : toolkit/mozapps/extensions/test/xpcshell/data/system_addons/app1/features/system1@tests.mozilla.org.xpi => toolkit/mozapps/extensions/test/xpcshell/data/system_addons/system1_1.xpi
rename : toolkit/mozapps/extensions/test/xpcshell/data/system_addons/app3/features/system1@tests.mozilla.org.xpi => toolkit/mozapps/extensions/test/xpcshell/data/system_addons/system1_1_badcert.xpi
rename : toolkit/mozapps/extensions/test/xpcshell/data/system_addons/app2/features/system1@tests.mozilla.org.xpi => toolkit/mozapps/extensions/test/xpcshell/data/system_addons/system1_2.xpi
rename : toolkit/mozapps/extensions/test/xpcshell/data/system_addons/app1/features/system2@tests.mozilla.org.xpi => toolkit/mozapps/extensions/test/xpcshell/data/system_addons/system2_1.xpi
rename : toolkit/mozapps/extensions/test/xpcshell/data/system_addons/app2/features/system3@tests.mozilla.org.xpi => toolkit/mozapps/extensions/test/xpcshell/data/system_addons/system3_1.xpi
extra : commitid : CuRP3svf6aO
extra : rebase_source : 0a67da41a0a7b27ecb042875ebf13b7b69ec5c84
extra : histedit_source : e96ecd9a4a56e503b4df0e2a0ecd1ac82a716a66
2015-09-10 10:57:39 -07:00
Carsten "Tomcat" Book
16ceb64560
Merge mozilla-central to fx-team
2015-09-22 12:51:39 +02:00
Julien Pagès
88477e5116
Bug 1206415 - move the suite concept into talos itself. r=jmaher
...
--HG--
extra : transplant_source : %E4%C0%01%96%87%9FoE%7F%0FU%F7%07A%8A%FE%5B%98%E0%D1
2015-09-19 12:25:04 +02:00
Henrik Skupin
132f2db8a4
Bug 1208431 - Allow query_minidump_stackwalk() to take a specific manifest file as parameter. r=jlund
2015-09-28 21:18:39 +02:00
Phil Ringnalda
5b1ea9212a
Backed out 12 changesets (bug 1202482, bug 1202483, bug 1202481, bug 1202486, bug 1202479, bug 1202478, bug 1197475, bug 1203331, bug 1139860, bug 1202501, bug 1199473, bug 1190662) for Mulet mochitest-5 timeouts
...
CLOSED TREE
Backed out changeset 6503123e95dd (bug 1139860)
Backed out changeset b83bc163064d (bug 1203331)
Backed out changeset 2f501bd57cd2 (bug 1202481)
Backed out changeset 37e6ac7beb42 (bug 1202486)
Backed out changeset f9b6e99e620e (bug 1202483)
Backed out changeset 466af9f9baee (bug 1202482)
Backed out changeset 6be690e265a2 (bug 1202479)
Backed out changeset 57ff88bfccf4 (bug 1197475)
Backed out changeset 7e8c04ff6049 (bug 1202478)
Backed out changeset 525227997274 (bug 1202501)
Backed out changeset da317cdb79d3 (bug 1199473)
Backed out changeset 73b8ddd6dac9 (bug 1190662)
--HG--
rename : browser/components/extensions/test/browser/browser_ext_simple.js => browser/components/extensions/test/browser/browser_extensions_simple.js
rename : toolkit/components/extensions/test/mochitest/file_sample.html => toolkit/components/extensions/test/mochitest/file_contentscript_page1.html
2015-09-22 19:29:51 -07:00
Masatoshi Kimura
83449db640
Bug 647621 - Remove document.charset from historical.html because it was eventually added to the spec. r=Ms2ger
2015-09-23 09:32:30 +09:00
Masatoshi Kimura
fce903a0f0
Bug 647621 - Implement document.charset and update document.inputEncoding to the latest spec. r=bz
2015-09-23 09:32:29 +09:00
Wes Kocher
d829d8baa4
Merge m-c to inbound, a=merge CLOSED TREE
2015-09-22 17:10:25 -07:00
Wes Kocher
d483efb68a
Merge m-c to inbound, a=merge CLOSED TREE
2015-09-22 16:46:47 -07:00
Bill McCloskey
eb18231fcc
Bug 1197475 - [webext] Add test for browser.storage.local, fix a few bugs in it (r=gabor)
2015-09-22 16:09:21 -07:00
Bill McCloskey
68b72b8a50
Bug 1190662 - [webext] Browser action popup HTML should be reloaded each time popup is opened (r=gabor)
2015-09-22 16:09:20 -07:00
Nikhil Marathe
4b3d721ca7
Bug 1184798 - Update web-platform-tests expected data. a=testonly
...
--HG--
extra : commitid : 5leI52ZNA6Z
extra : rebase_source : 2fbac06440b248d26049c4a23c77851157e9f7e7
2015-09-21 23:20:57 -07:00
Nikhil Marathe
6f31e1cab7
Bug 1184798 - same origin, cors and no-cors load tests. r=bkelly
...
--HG--
extra : commitid : 8GodYVLHw9r
extra : rebase_source : 661a5eee4de989ba552a335c897c4da6f6e714ce
2015-09-17 12:57:50 -07:00
Nikhil Marathe
48d53f38df
Bug 1184798 - Ensure workers loads are treated as non-subresource fetches. r=jdm
...
--HG--
extra : commitid : KSrA2sDx3MI
extra : rebase_source : c28988811316aa40e38752669a928d27750001b6
2015-09-17 11:56:41 -07:00
Nikhil Marathe
7ca77d3083
Bug 1189671 - Fix getregistrations test. r=jgraham
...
Moves the test to .https so it actually works.
Switches to using promise_test like the current blink test since sequential promise is not implemented and not needed.
compares registrations by scope since getRegistrations() produces new objects every time.
Change the with_iframe() call for the remote frame registration to actually
wait till the remote register() finishes so there is a valid registration to
unregister() when the frame receives a message.
--HG--
rename : testing/web-platform/mozilla/tests/service-workers/service-worker/getregistrations.sub.html => testing/web-platform/mozilla/tests/service-workers/service-worker/getregistrations.https.html
extra : commitid : COWgSA2yLxV
extra : rebase_source : e50bae30d93459c78223b99bb540a0503a75a59f
2015-09-14 12:58:09 -07:00
Jordan Lund
9950603342
Bug 1206106 - Create a java tarball that works on CentOS 6, taskcluster task template, CLOSED TREE NPOTB r=testing
...
--HG--
extra : source : 520103c26e0c757ce307f18e4d0becfa2f76868f
extra : amend_source : c1d32ba99d53cde3a614af0bd3d96b084ef0f641
2015-09-22 11:34:15 -07:00
Wes Kocher
02fd124a0c
Backed out changeset 520103c26e0c (bug 1206106) for apparently breaking b2g device builds CLOSED TREE
...
--HG--
rename : testing/taskcluster/scripts/misc/repackage-jdk-ubuntu.sh => testing/taskcluster/scripts/misc/repackage-jdk.sh
2015-09-22 11:56:01 -07:00
Jordan Lund
80b590d642
Bug 1206106 - Create a java tarball that works on CentOS 6, taskcluster task template, NPOTB r=testing
...
--HG--
rename : testing/taskcluster/scripts/misc/repackage-jdk.sh => testing/taskcluster/scripts/misc/repackage-jdk-ubuntu.sh
2015-09-22 11:34:15 -07:00
Edgar Chen
2ce10e3c54
Bug 1181261 - Remove remaining in-tree mozhanress configs. r=ahal
...
--HG--
extra : commitid : vUyrXE2yll
extra : rebase_source : b7dc669aade63c1dad49252fc70ec35cbdcb1969
extra : amend_source : 3cba7794b1a230948c14d398eeb952539a328fee
2015-09-19 14:47:52 +08:00
David Burns
87f6a90707
Bug 1141519: if we try call marionette calls in the teardown and they don't work we should just carry on; r=jgriffin
...
--HG--
extra : commitid : 92srjBSkvhe
extra : rebase_source : 33569e134ffb89036ee18651c9f8d37bec43a489
2015-09-16 20:58:28 +01:00
David Burns
4dda200aaf
Bug 1141519: error if we are going to try send a message to a frame that we know doesnt exist; r=jgriffin
...
--HG--
extra : commitid : HT9JmxPxSRk
extra : rebase_source : 3354f9f476612c773c22262ff9ec1b455356780b
2015-09-16 20:54:46 +01:00
David Burns
6a79407a30
Bug 1141519: added test that puts marionette into a position that can cause hangs when in content scope; r=jgriffin
...
--HG--
extra : commitid : GrvcthCmHw1
extra : rebase_source : 1bc3fe4b2e6b1c839503f431955c5681e4edcc61
2015-09-18 21:39:01 +01:00
David Burns
bea16e0d33
Bug 1141519: Don't switch to content scope for logging the test end; r=jgriffin
...
--HG--
extra : commitid : IC9y6Vij4Fj
extra : rebase_source : b54d233528ffd1713bef0e2c6bae2c5b484b04fc
2015-09-16 18:43:23 +01:00
Dustin J. Mitchell
ff0f1ae867
Bug 1205241: enable linux64 opt/dbg and MacOSX64 builds on m-i and m-c; r=ted.mielczarek
...
Properly splitting clobber (try) and non-clobber builds
--HG--
rename : testing/taskcluster/tasks/builds/dbg_macosx64.yml => testing/taskcluster/tasks/builds/dbg_macosx64_clobber.yml
rename : testing/taskcluster/tasks/builds/opt_macosx64.yml => testing/taskcluster/tasks/builds/opt_macosx64_clobber.yml
extra : commitid : 8rc1ZSq1hkA
extra : rebase_source : 01c0decaeef5737430f2f8b30d4780800accd447
2015-09-16 06:48:37 -04:00
Wes Kocher
3d281ce639
Merge m-c to inbound, a=merge CLOSED TREE
2015-09-21 09:52:50 -07:00
Maja Frydrychowicz
35b4477445
Bug 1197224 - Part 2: configure mozharness script to run media tests on Windows, r=jgriffin, DONTBUILD because NPOTB
...
--HG--
extra : commitid : 6YHBSuCye6u
2015-09-29 07:48:47 -04:00
Julien Pagès
dfe5915369
Bug 1195288
- reduce tps page set number on windows xp. r=jmaher
...
--HG--
extra : commitid : Fmbygcgcs5W
extra : rebase_source : 64e46d08a1c646443b6cac4c62e6e0728de2ecf9
2015-09-28 21:24:58 +02:00
Julien Pagès
c20cbbbfae
Bug 1195288
- consider using python webserver for production talos. r=jmaher
...
Always use an in-process webserver, removing the need for apache - and
hopefuly providing better accuracy for numbers.
This means that we know have to copy the pagesets in the talos dir on
harness.
On windows, some pagesets paths were too long due to that, so the
solution is to replace "page_load_test" with "tests".
--HG--
rename : testing/talos/talos/page_load_test/a11y/a11y.js => testing/talos/talos/tests/a11y/a11y.js
rename : testing/talos/talos/page_load_test/a11y/a11y.manifest => testing/talos/talos/tests/a11y/a11y.manifest
rename : testing/talos/talos/page_load_test/a11y/dhtml.html => testing/talos/talos/tests/a11y/dhtml.html
rename : testing/talos/talos/page_load_test/a11y/tablemutation.html => testing/talos/talos/tests/a11y/tablemutation.html
rename : testing/talos/talos/page_load_test/canvasmark/HelveticaNeueLTStd-Lt.otf => testing/talos/talos/tests/canvasmark/HelveticaNeueLTStd-Lt.otf
rename : testing/talos/talos/page_load_test/canvasmark/HelveticaNeueLTStd-Md.otf => testing/talos/talos/tests/canvasmark/HelveticaNeueLTStd-Md.otf
rename : testing/talos/talos/page_load_test/canvasmark/canvasmark.manifest => testing/talos/talos/tests/canvasmark/canvasmark.manifest
rename : testing/talos/talos/page_load_test/canvasmark/images/asteroid1.png => testing/talos/talos/tests/canvasmark/images/asteroid1.png
rename : testing/talos/talos/page_load_test/canvasmark/images/asteroid2.png => testing/talos/talos/tests/canvasmark/images/asteroid2.png
rename : testing/talos/talos/page_load_test/canvasmark/images/asteroid3.png => testing/talos/talos/tests/canvasmark/images/asteroid3.png
rename : testing/talos/talos/page_load_test/canvasmark/images/asteroid4.png => testing/talos/talos/tests/canvasmark/images/asteroid4.png
rename : testing/talos/talos/page_load_test/canvasmark/images/bg3_1.jpg => testing/talos/talos/tests/canvasmark/images/bg3_1.jpg
rename : testing/talos/talos/page_load_test/canvasmark/images/canvasmark2013.jpg => testing/talos/talos/tests/canvasmark/images/canvasmark2013.jpg
rename : testing/talos/talos/page_load_test/canvasmark/images/enemyship1.png => testing/talos/talos/tests/canvasmark/images/enemyship1.png
rename : testing/talos/talos/page_load_test/canvasmark/images/fruit.jpg => testing/talos/talos/tests/canvasmark/images/fruit.jpg
rename : testing/talos/talos/page_load_test/canvasmark/images/player.png => testing/talos/talos/tests/canvasmark/images/player.png
rename : testing/talos/talos/page_load_test/canvasmark/images/texture5.png => testing/talos/talos/tests/canvasmark/images/texture5.png
rename : testing/talos/talos/page_load_test/canvasmark/index.html => testing/talos/talos/tests/canvasmark/index.html
rename : testing/talos/talos/page_load_test/canvasmark/license.txt => testing/talos/talos/tests/canvasmark/license.txt
rename : testing/talos/talos/page_load_test/canvasmark/ostrich-black-webfont.woff => testing/talos/talos/tests/canvasmark/ostrich-black-webfont.woff
rename : testing/talos/talos/page_load_test/canvasmark/scripts/canvasmark_v6.js => testing/talos/talos/tests/canvasmark/scripts/canvasmark_v6.js
rename : testing/talos/talos/page_load_test/canvasmark/scripts/jquery-1.4.2.min.js => testing/talos/talos/tests/canvasmark/scripts/jquery-1.4.2.min.js
rename : testing/talos/talos/page_load_test/canvasmark/scripts/k3d-min.js => testing/talos/talos/tests/canvasmark/scripts/k3d-min.js
rename : testing/talos/talos/page_load_test/canvasmark/scripts/mathlib-min.js => testing/talos/talos/tests/canvasmark/scripts/mathlib-min.js
rename : testing/talos/talos/page_load_test/devtools/addon/chrome.manifest => testing/talos/talos/tests/devtools/addon/chrome.manifest
rename : testing/talos/talos/page_load_test/devtools/addon/content/Profiler.js => testing/talos/talos/tests/devtools/addon/content/Profiler.js
rename : testing/talos/talos/page_load_test/devtools/addon/content/addon-test-frontend.js => testing/talos/talos/tests/devtools/addon/content/addon-test-frontend.js
rename : testing/talos/talos/page_load_test/devtools/addon/content/damp.html => testing/talos/talos/tests/devtools/addon/content/damp.html
rename : testing/talos/talos/page_load_test/devtools/addon/content/damp.js => testing/talos/talos/tests/devtools/addon/content/damp.js
rename : testing/talos/talos/page_load_test/devtools/addon/content/damp.overlay.xul => testing/talos/talos/tests/devtools/addon/content/damp.overlay.xul
rename : testing/talos/talos/page_load_test/devtools/addon/content/framescript.js => testing/talos/talos/tests/devtools/addon/content/framescript.js
rename : testing/talos/talos/page_load_test/devtools/addon/content/pages/simple.html => testing/talos/talos/tests/devtools/addon/content/pages/simple.html
rename : testing/talos/talos/page_load_test/devtools/addon/install.rdf => testing/talos/talos/tests/devtools/addon/install.rdf
rename : testing/talos/talos/page_load_test/devtools/damp.manifest => testing/talos/talos/tests/devtools/damp.manifest
rename : testing/talos/talos/page_load_test/dromaeo/JSON.php => testing/talos/talos/tests/dromaeo/JSON.php
rename : testing/talos/talos/page_load_test/dromaeo/LICENSE => testing/talos/talos/tests/dromaeo/LICENSE
rename : testing/talos/talos/page_load_test/dromaeo/application.css => testing/talos/talos/tests/dromaeo/application.css
rename : testing/talos/talos/page_load_test/dromaeo/css.manifest => testing/talos/talos/tests/dromaeo/css.manifest
rename : testing/talos/talos/page_load_test/dromaeo/cssquery-dojo.html => testing/talos/talos/tests/dromaeo/cssquery-dojo.html
rename : testing/talos/talos/page_load_test/dromaeo/cssquery-ext.html => testing/talos/talos/tests/dromaeo/cssquery-ext.html
rename : testing/talos/talos/page_load_test/dromaeo/cssquery-jquery.html => testing/talos/talos/tests/dromaeo/cssquery-jquery.html
rename : testing/talos/talos/page_load_test/dromaeo/cssquery-mootools.html => testing/talos/talos/tests/dromaeo/cssquery-mootools.html
rename : testing/talos/talos/page_load_test/dromaeo/cssquery-prototype.html => testing/talos/talos/tests/dromaeo/cssquery-prototype.html
rename : testing/talos/talos/page_load_test/dromaeo/cssquery-yui.html => testing/talos/talos/tests/dromaeo/cssquery-yui.html
rename : testing/talos/talos/page_load_test/dromaeo/dom-attr.html => testing/talos/talos/tests/dromaeo/dom-attr.html
rename : testing/talos/talos/page_load_test/dromaeo/dom-modify.html => testing/talos/talos/tests/dromaeo/dom-modify.html
rename : testing/talos/talos/page_load_test/dromaeo/dom-query.html => testing/talos/talos/tests/dromaeo/dom-query.html
rename : testing/talos/talos/page_load_test/dromaeo/dom-traverse.html => testing/talos/talos/tests/dromaeo/dom-traverse.html
rename : testing/talos/talos/page_load_test/dromaeo/dom.manifest => testing/talos/talos/tests/dromaeo/dom.manifest
rename : testing/talos/talos/page_load_test/dromaeo/favicon.ico => testing/talos/talos/tests/dromaeo/favicon.ico
rename : testing/talos/talos/page_load_test/dromaeo/favicon.png => testing/talos/talos/tests/dromaeo/favicon.png
rename : testing/talos/talos/page_load_test/dromaeo/htmlrunner.js => testing/talos/talos/tests/dromaeo/htmlrunner.js
rename : testing/talos/talos/page_load_test/dromaeo/ie.css => testing/talos/talos/tests/dromaeo/ie.css
rename : testing/talos/talos/page_load_test/dromaeo/images/bg.png => testing/talos/talos/tests/dromaeo/images/bg.png
rename : testing/talos/talos/page_load_test/dromaeo/images/clouds.png => testing/talos/talos/tests/dromaeo/images/clouds.png
rename : testing/talos/talos/page_load_test/dromaeo/images/clouds2.png => testing/talos/talos/tests/dromaeo/images/clouds2.png
rename : testing/talos/talos/page_load_test/dromaeo/images/comets.png => testing/talos/talos/tests/dromaeo/images/comets.png
rename : testing/talos/talos/page_load_test/dromaeo/images/dino1.png => testing/talos/talos/tests/dromaeo/images/dino1.png
rename : testing/talos/talos/page_load_test/dromaeo/images/dino2.png => testing/talos/talos/tests/dromaeo/images/dino2.png
rename : testing/talos/talos/page_load_test/dromaeo/images/dino3.png => testing/talos/talos/tests/dromaeo/images/dino3.png
rename : testing/talos/talos/page_load_test/dromaeo/images/dino4.png => testing/talos/talos/tests/dromaeo/images/dino4.png
rename : testing/talos/talos/page_load_test/dromaeo/images/dino5.png => testing/talos/talos/tests/dromaeo/images/dino5.png
rename : testing/talos/talos/page_load_test/dromaeo/images/dino6.png => testing/talos/talos/tests/dromaeo/images/dino6.png
rename : testing/talos/talos/page_load_test/dromaeo/images/dino7.png => testing/talos/talos/tests/dromaeo/images/dino7.png
rename : testing/talos/talos/page_load_test/dromaeo/images/dino8.png => testing/talos/talos/tests/dromaeo/images/dino8.png
rename : testing/talos/talos/page_load_test/dromaeo/images/left.png => testing/talos/talos/tests/dromaeo/images/left.png
rename : testing/talos/talos/page_load_test/dromaeo/images/logo.png => testing/talos/talos/tests/dromaeo/images/logo.png
rename : testing/talos/talos/page_load_test/dromaeo/images/logo2.png => testing/talos/talos/tests/dromaeo/images/logo2.png
rename : testing/talos/talos/page_load_test/dromaeo/images/logo3.png => testing/talos/talos/tests/dromaeo/images/logo3.png
rename : testing/talos/talos/page_load_test/dromaeo/images/right.png => testing/talos/talos/tests/dromaeo/images/right.png
rename : testing/talos/talos/page_load_test/dromaeo/images/top.png => testing/talos/talos/tests/dromaeo/images/top.png
rename : testing/talos/talos/page_load_test/dromaeo/images/water.png => testing/talos/talos/tests/dromaeo/images/water.png
rename : testing/talos/talos/page_load_test/dromaeo/index.html => testing/talos/talos/tests/dromaeo/index.html
rename : testing/talos/talos/page_load_test/dromaeo/jquery.js => testing/talos/talos/tests/dromaeo/jquery.js
rename : testing/talos/talos/page_load_test/dromaeo/json.js => testing/talos/talos/tests/dromaeo/json.js
rename : testing/talos/talos/page_load_test/dromaeo/lib/dojo.js => testing/talos/talos/tests/dromaeo/lib/dojo.js
rename : testing/talos/talos/page_load_test/dromaeo/lib/ext-base.js => testing/talos/talos/tests/dromaeo/lib/ext-base.js
rename : testing/talos/talos/page_load_test/dromaeo/lib/ext-core.js => testing/talos/talos/tests/dromaeo/lib/ext-core.js
rename : testing/talos/talos/page_load_test/dromaeo/lib/jquery.js => testing/talos/talos/tests/dromaeo/lib/jquery.js
rename : testing/talos/talos/page_load_test/dromaeo/lib/mootools.js => testing/talos/talos/tests/dromaeo/lib/mootools.js
rename : testing/talos/talos/page_load_test/dromaeo/lib/prototype.js => testing/talos/talos/tests/dromaeo/lib/prototype.js
rename : testing/talos/talos/page_load_test/dromaeo/lib/yahoo.js => testing/talos/talos/tests/dromaeo/lib/yahoo.js
rename : testing/talos/talos/page_load_test/dromaeo/lib/yui-dom.js => testing/talos/talos/tests/dromaeo/lib/yui-dom.js
rename : testing/talos/talos/page_load_test/dromaeo/lib/yui-event.js => testing/talos/talos/tests/dromaeo/lib/yui-event.js
rename : testing/talos/talos/page_load_test/dromaeo/lib/yui-selector.js => testing/talos/talos/tests/dromaeo/lib/yui-selector.js
rename : testing/talos/talos/page_load_test/dromaeo/pngfix.js => testing/talos/talos/tests/dromaeo/pngfix.js
rename : testing/talos/talos/page_load_test/dromaeo/reset.css => testing/talos/talos/tests/dromaeo/reset.css
rename : testing/talos/talos/page_load_test/dromaeo/store.php => testing/talos/talos/tests/dromaeo/store.php
rename : testing/talos/talos/page_load_test/dromaeo/test-head.html => testing/talos/talos/tests/dromaeo/test-head.html
rename : testing/talos/talos/page_load_test/dromaeo/test-head.js => testing/talos/talos/tests/dromaeo/test-head.js
rename : testing/talos/talos/page_load_test/dromaeo/test-tail.html => testing/talos/talos/tests/dromaeo/test-tail.html
rename : testing/talos/talos/page_load_test/dromaeo/test-tail.js => testing/talos/talos/tests/dromaeo/test-tail.js
rename : testing/talos/talos/page_load_test/dromaeo/tests/MANIFEST.json => testing/talos/talos/tests/dromaeo/tests/MANIFEST.json
rename : testing/talos/talos/page_load_test/dromaeo/tests/cssquery-dojo.html => testing/talos/talos/tests/dromaeo/tests/cssquery-dojo.html
rename : testing/talos/talos/page_load_test/dromaeo/tests/cssquery-ext.html => testing/talos/talos/tests/dromaeo/tests/cssquery-ext.html
rename : testing/talos/talos/page_load_test/dromaeo/tests/cssquery-jquery.html => testing/talos/talos/tests/dromaeo/tests/cssquery-jquery.html
rename : testing/talos/talos/page_load_test/dromaeo/tests/cssquery-mootools.html => testing/talos/talos/tests/dromaeo/tests/cssquery-mootools.html
rename : testing/talos/talos/page_load_test/dromaeo/tests/cssquery-prototype.html => testing/talos/talos/tests/dromaeo/tests/cssquery-prototype.html
rename : testing/talos/talos/page_load_test/dromaeo/tests/cssquery-yui.html => testing/talos/talos/tests/dromaeo/tests/cssquery-yui.html
rename : testing/talos/talos/page_load_test/dromaeo/tests/dom-attr.html => testing/talos/talos/tests/dromaeo/tests/dom-attr.html
rename : testing/talos/talos/page_load_test/dromaeo/tests/dom-modify.html => testing/talos/talos/tests/dromaeo/tests/dom-modify.html
rename : testing/talos/talos/page_load_test/dromaeo/tests/dom-query.html => testing/talos/talos/tests/dromaeo/tests/dom-query.html
rename : testing/talos/talos/page_load_test/dromaeo/tests/dom-traverse.html => testing/talos/talos/tests/dromaeo/tests/dom-traverse.html
rename : testing/talos/talos/page_load_test/dromaeo/tests/dromaeo-3d-cube.html => testing/talos/talos/tests/dromaeo/tests/dromaeo-3d-cube.html
rename : testing/talos/talos/page_load_test/dromaeo/tests/dromaeo-core-eval.html => testing/talos/talos/tests/dromaeo/tests/dromaeo-core-eval.html
rename : testing/talos/talos/page_load_test/dromaeo/tests/dromaeo-object-array.html => testing/talos/talos/tests/dromaeo/tests/dromaeo-object-array.html
rename : testing/talos/talos/page_load_test/dromaeo/tests/dromaeo-object-regexp.html => testing/talos/talos/tests/dromaeo/tests/dromaeo-object-regexp.html
rename : testing/talos/talos/page_load_test/dromaeo/tests/dromaeo-object-string.html => testing/talos/talos/tests/dromaeo/tests/dromaeo-object-string.html
rename : testing/talos/talos/page_load_test/dromaeo/tests/dromaeo-string-base64.html => testing/talos/talos/tests/dromaeo/tests/dromaeo-string-base64.html
rename : testing/talos/talos/page_load_test/dromaeo/tests/jslib-attr-jquery.html => testing/talos/talos/tests/dromaeo/tests/jslib-attr-jquery.html
rename : testing/talos/talos/page_load_test/dromaeo/tests/jslib-attr-prototype.html => testing/talos/talos/tests/dromaeo/tests/jslib-attr-prototype.html
rename : testing/talos/talos/page_load_test/dromaeo/tests/jslib-event-jquery.html => testing/talos/talos/tests/dromaeo/tests/jslib-event-jquery.html
rename : testing/talos/talos/page_load_test/dromaeo/tests/jslib-event-prototype.html => testing/talos/talos/tests/dromaeo/tests/jslib-event-prototype.html
rename : testing/talos/talos/page_load_test/dromaeo/tests/jslib-modify-jquery.html => testing/talos/talos/tests/dromaeo/tests/jslib-modify-jquery.html
rename : testing/talos/talos/page_load_test/dromaeo/tests/jslib-modify-prototype.html => testing/talos/talos/tests/dromaeo/tests/jslib-modify-prototype.html
rename : testing/talos/talos/page_load_test/dromaeo/tests/jslib-style-jquery.html => testing/talos/talos/tests/dromaeo/tests/jslib-style-jquery.html
rename : testing/talos/talos/page_load_test/dromaeo/tests/jslib-style-prototype.html => testing/talos/talos/tests/dromaeo/tests/jslib-style-prototype.html
rename : testing/talos/talos/page_load_test/dromaeo/tests/jslib-traverse-jquery.html => testing/talos/talos/tests/dromaeo/tests/jslib-traverse-jquery.html
rename : testing/talos/talos/page_load_test/dromaeo/tests/jslib-traverse-prototype.html => testing/talos/talos/tests/dromaeo/tests/jslib-traverse-prototype.html
rename : testing/talos/talos/page_load_test/dromaeo/tests/sunspider-3d-morph.html => testing/talos/talos/tests/dromaeo/tests/sunspider-3d-morph.html
rename : testing/talos/talos/page_load_test/dromaeo/tests/sunspider-3d-raytrace.html => testing/talos/talos/tests/dromaeo/tests/sunspider-3d-raytrace.html
rename : testing/talos/talos/page_load_test/dromaeo/tests/sunspider-access-binary-trees.html => testing/talos/talos/tests/dromaeo/tests/sunspider-access-binary-trees.html
rename : testing/talos/talos/page_load_test/dromaeo/tests/sunspider-access-fannkuch.html => testing/talos/talos/tests/dromaeo/tests/sunspider-access-fannkuch.html
rename : testing/talos/talos/page_load_test/dromaeo/tests/sunspider-access-nbody.html => testing/talos/talos/tests/dromaeo/tests/sunspider-access-nbody.html
rename : testing/talos/talos/page_load_test/dromaeo/tests/sunspider-access-nsieve.html => testing/talos/talos/tests/dromaeo/tests/sunspider-access-nsieve.html
rename : testing/talos/talos/page_load_test/dromaeo/tests/sunspider-bitops-3bit-bits-in-byte.html => testing/talos/talos/tests/dromaeo/tests/sunspider-bitops-3bit-bits-in-byte.html
rename : testing/talos/talos/page_load_test/dromaeo/tests/sunspider-bitops-bits-in-byte.html => testing/talos/talos/tests/dromaeo/tests/sunspider-bitops-bits-in-byte.html
rename : testing/talos/talos/page_load_test/dromaeo/tests/sunspider-bitops-bitwise-and.html => testing/talos/talos/tests/dromaeo/tests/sunspider-bitops-bitwise-and.html
rename : testing/talos/talos/page_load_test/dromaeo/tests/sunspider-bitops-nsieve-bits.html => testing/talos/talos/tests/dromaeo/tests/sunspider-bitops-nsieve-bits.html
rename : testing/talos/talos/page_load_test/dromaeo/tests/sunspider-controlflow-recursive.html => testing/talos/talos/tests/dromaeo/tests/sunspider-controlflow-recursive.html
rename : testing/talos/talos/page_load_test/dromaeo/tests/sunspider-crypto-aes.html => testing/talos/talos/tests/dromaeo/tests/sunspider-crypto-aes.html
rename : testing/talos/talos/page_load_test/dromaeo/tests/sunspider-crypto-md5.html => testing/talos/talos/tests/dromaeo/tests/sunspider-crypto-md5.html
rename : testing/talos/talos/page_load_test/dromaeo/tests/sunspider-crypto-sha1.html => testing/talos/talos/tests/dromaeo/tests/sunspider-crypto-sha1.html
rename : testing/talos/talos/page_load_test/dromaeo/tests/sunspider-date-format-tofte.html => testing/talos/talos/tests/dromaeo/tests/sunspider-date-format-tofte.html
rename : testing/talos/talos/page_load_test/dromaeo/tests/sunspider-date-format-xparb.html => testing/talos/talos/tests/dromaeo/tests/sunspider-date-format-xparb.html
rename : testing/talos/talos/page_load_test/dromaeo/tests/sunspider-math-cordic.html => testing/talos/talos/tests/dromaeo/tests/sunspider-math-cordic.html
rename : testing/talos/talos/page_load_test/dromaeo/tests/sunspider-math-partial-sums.html => testing/talos/talos/tests/dromaeo/tests/sunspider-math-partial-sums.html
rename : testing/talos/talos/page_load_test/dromaeo/tests/sunspider-math-spectral-norm.html => testing/talos/talos/tests/dromaeo/tests/sunspider-math-spectral-norm.html
rename : testing/talos/talos/page_load_test/dromaeo/tests/sunspider-regexp-dna.html => testing/talos/talos/tests/dromaeo/tests/sunspider-regexp-dna.html
rename : testing/talos/talos/page_load_test/dromaeo/tests/sunspider-string-fasta.html => testing/talos/talos/tests/dromaeo/tests/sunspider-string-fasta.html
rename : testing/talos/talos/page_load_test/dromaeo/tests/sunspider-string-tagcloud.html => testing/talos/talos/tests/dromaeo/tests/sunspider-string-tagcloud.html
rename : testing/talos/talos/page_load_test/dromaeo/tests/sunspider-string-unpack-code.html => testing/talos/talos/tests/dromaeo/tests/sunspider-string-unpack-code.html
rename : testing/talos/talos/page_load_test/dromaeo/tests/sunspider-string-validate-input.html => testing/talos/talos/tests/dromaeo/tests/sunspider-string-validate-input.html
rename : testing/talos/talos/page_load_test/dromaeo/tests/v8-crypto.html => testing/talos/talos/tests/dromaeo/tests/v8-crypto.html
rename : testing/talos/talos/page_load_test/dromaeo/tests/v8-deltablue.html => testing/talos/talos/tests/dromaeo/tests/v8-deltablue.html
rename : testing/talos/talos/page_load_test/dromaeo/tests/v8-earley-boyer.html => testing/talos/talos/tests/dromaeo/tests/v8-earley-boyer.html
rename : testing/talos/talos/page_load_test/dromaeo/tests/v8-raytrace.html => testing/talos/talos/tests/dromaeo/tests/v8-raytrace.html
rename : testing/talos/talos/page_load_test/dromaeo/tests/v8-richards.html => testing/talos/talos/tests/dromaeo/tests/v8-richards.html
rename : testing/talos/talos/page_load_test/dromaeo/web-style.css => testing/talos/talos/tests/dromaeo/web-style.css
rename : testing/talos/talos/page_load_test/dromaeo/webrunner.js => testing/talos/talos/tests/dromaeo/webrunner.js
rename : testing/talos/talos/page_load_test/kraken/driver.html => testing/talos/talos/tests/kraken/driver.html
rename : testing/talos/talos/page_load_test/kraken/kraken.css => testing/talos/talos/tests/kraken/kraken.css
rename : testing/talos/talos/page_load_test/kraken/kraken.manifest => testing/talos/talos/tests/kraken/kraken.manifest
rename : testing/talos/talos/page_load_test/kraken/test-contents.js => testing/talos/talos/tests/kraken/test-contents.js
rename : testing/talos/talos/page_load_test/kraken/test-prefix.js => testing/talos/talos/tests/kraken/test-prefix.js
rename : testing/talos/talos/page_load_test/quit.js => testing/talos/talos/tests/quit.js
rename : testing/talos/talos/page_load_test/scroll/drac.htm => testing/talos/talos/tests/scroll/drac.htm
rename : testing/talos/talos/page_load_test/scroll/iframe.svg => testing/talos/talos/tests/scroll/iframe.svg
rename : testing/talos/talos/page_load_test/scroll/reader.css => testing/talos/talos/tests/scroll/reader.css
rename : testing/talos/talos/page_load_test/scroll/reader.htm => testing/talos/talos/tests/scroll/reader.htm
rename : testing/talos/talos/page_load_test/scroll/scroll-test.js => testing/talos/talos/tests/scroll/scroll-test.js
rename : testing/talos/talos/page_load_test/scroll/scroll.js => testing/talos/talos/tests/scroll/scroll.js
rename : testing/talos/talos/page_load_test/scroll/scroll.manifest => testing/talos/talos/tests/scroll/scroll.manifest
rename : testing/talos/talos/page_load_test/scroll/strips-single.png => testing/talos/talos/tests/scroll/strips-single.png
rename : testing/talos/talos/page_load_test/scroll/strips.png => testing/talos/talos/tests/scroll/strips.png
rename : testing/talos/talos/page_load_test/scroll/tiled-downscale.html => testing/talos/talos/tests/scroll/tiled-downscale.html
rename : testing/talos/talos/page_load_test/scroll/tiled-fixed-downscale.html => testing/talos/talos/tests/scroll/tiled-fixed-downscale.html
rename : testing/talos/talos/page_load_test/scroll/tiled-fixed.html => testing/talos/talos/tests/scroll/tiled-fixed.html
rename : testing/talos/talos/page_load_test/scroll/tiled.html => testing/talos/talos/tests/scroll/tiled.html
rename : testing/talos/talos/page_load_test/svg_opacity/big-optimizable-group-opacity-2500.svg => testing/talos/talos/tests/svg_opacity/big-optimizable-group-opacity-2500.svg
rename : testing/talos/talos/page_load_test/svg_opacity/small-group-opacity-2500.svg => testing/talos/talos/tests/svg_opacity/small-group-opacity-2500.svg
rename : testing/talos/talos/page_load_test/svg_opacity/svg_opacity.manifest => testing/talos/talos/tests/svg_opacity/svg_opacity.manifest
rename : testing/talos/talos/page_load_test/svgx/composite-scale-opacity.svg => testing/talos/talos/tests/svgx/composite-scale-opacity.svg
rename : testing/talos/talos/page_load_test/svgx/composite-scale-rotate-opacity.svg => testing/talos/talos/tests/svgx/composite-scale-rotate-opacity.svg
rename : testing/talos/talos/page_load_test/svgx/composite-scale-rotate.svg => testing/talos/talos/tests/svgx/composite-scale-rotate.svg
rename : testing/talos/talos/page_load_test/svgx/composite-scale.svg => testing/talos/talos/tests/svgx/composite-scale.svg
rename : testing/talos/talos/page_load_test/svgx/gearflowers.svg => testing/talos/talos/tests/svgx/gearflowers.svg
rename : testing/talos/talos/page_load_test/svgx/hixie-001.xml => testing/talos/talos/tests/svgx/hixie-001.xml
rename : testing/talos/talos/page_load_test/svgx/hixie-002.xml => testing/talos/talos/tests/svgx/hixie-002.xml
rename : testing/talos/talos/page_load_test/svgx/hixie-003.xml => testing/talos/talos/tests/svgx/hixie-003.xml
rename : testing/talos/talos/page_load_test/svgx/hixie-004.xml => testing/talos/talos/tests/svgx/hixie-004.xml
rename : testing/talos/talos/page_load_test/svgx/hixie-005.xml => testing/talos/talos/tests/svgx/hixie-005.xml
rename : testing/talos/talos/page_load_test/svgx/hixie-006.xml => testing/talos/talos/tests/svgx/hixie-006.xml
rename : testing/talos/talos/page_load_test/svgx/hixie-007.xml => testing/talos/talos/tests/svgx/hixie-007.xml
rename : testing/talos/talos/page_load_test/svgx/images/kyoto_1.jpg => testing/talos/talos/tests/svgx/images/kyoto_1.jpg
rename : testing/talos/talos/page_load_test/svgx/images/kyoto_2.jpg => testing/talos/talos/tests/svgx/images/kyoto_2.jpg
rename : testing/talos/talos/page_load_test/svgx/images/smallcats.gif => testing/talos/talos/tests/svgx/images/smallcats.gif
rename : testing/talos/talos/page_load_test/svgx/svgm.manifest => testing/talos/talos/tests/svgx/svgm.manifest
rename : testing/talos/talos/page_load_test/svgx/svgx.manifest => testing/talos/talos/tests/svgx/svgx.manifest
rename : testing/talos/talos/page_load_test/tabswitch/bootstrap.js => testing/talos/talos/tests/tabswitch/bootstrap.js
rename : testing/talos/talos/page_load_test/tabswitch/chrome.manifest => testing/talos/talos/tests/tabswitch/chrome.manifest
rename : testing/talos/talos/page_load_test/tabswitch/content/options.xul => testing/talos/talos/tests/tabswitch/content/options.xul
rename : testing/talos/talos/page_load_test/tabswitch/content/test.html => testing/talos/talos/tests/tabswitch/content/test.html
rename : testing/talos/talos/page_load_test/tabswitch/install.rdf => testing/talos/talos/tests/tabswitch/install.rdf
rename : testing/talos/talos/page_load_test/tabswitch/tps.manifest => testing/talos/talos/tests/tabswitch/tps.manifest
rename : testing/talos/talos/page_load_test/tart/addon/chrome.manifest => testing/talos/talos/tests/tart/addon/chrome.manifest
rename : testing/talos/talos/page_load_test/tart/addon/content/Profiler.js => testing/talos/talos/tests/tart/addon/content/Profiler.js
rename : testing/talos/talos/page_load_test/tart/addon/content/blank.icon.html => testing/talos/talos/tests/tart/addon/content/blank.icon.html
rename : testing/talos/talos/page_load_test/tart/addon/content/framescript.js => testing/talos/talos/tests/tart/addon/content/framescript.js
rename : testing/talos/talos/page_load_test/tart/addon/content/tab-min-width-1px.css => testing/talos/talos/tests/tart/addon/content/tab-min-width-1px.css
rename : testing/talos/talos/page_load_test/tart/addon/content/tart.html => testing/talos/talos/tests/tart/addon/content/tart.html
rename : testing/talos/talos/page_load_test/tart/addon/content/tart.ico => testing/talos/talos/tests/tart/addon/content/tart.ico
rename : testing/talos/talos/page_load_test/tart/addon/content/tart.js => testing/talos/talos/tests/tart/addon/content/tart.js
rename : testing/talos/talos/page_load_test/tart/addon/content/tart.overlay.xul => testing/talos/talos/tests/tart/addon/content/tart.overlay.xul
rename : testing/talos/talos/page_load_test/tart/addon/install.rdf => testing/talos/talos/tests/tart/addon/install.rdf
rename : testing/talos/talos/page_load_test/tart/cart.manifest => testing/talos/talos/tests/tart/cart.manifest
rename : testing/talos/talos/page_load_test/tart/tart.manifest => testing/talos/talos/tests/tart/tart.manifest
rename : testing/talos/talos/page_load_test/tp5o.html => testing/talos/talos/tests/tp5o.html
rename : testing/talos/talos/page_load_test/v8_7/base.js => testing/talos/talos/tests/v8_7/base.js
rename : testing/talos/talos/page_load_test/v8_7/crypto.js => testing/talos/talos/tests/v8_7/crypto.js
rename : testing/talos/talos/page_load_test/v8_7/deltablue.js => testing/talos/talos/tests/v8_7/deltablue.js
rename : testing/talos/talos/page_load_test/v8_7/earley-boyer.js => testing/talos/talos/tests/v8_7/earley-boyer.js
rename : testing/talos/talos/page_load_test/v8_7/navier-stokes.js => testing/talos/talos/tests/v8_7/navier-stokes.js
rename : testing/talos/talos/page_load_test/v8_7/raytrace.js => testing/talos/talos/tests/v8_7/raytrace.js
rename : testing/talos/talos/page_load_test/v8_7/regexp.js => testing/talos/talos/tests/v8_7/regexp.js
rename : testing/talos/talos/page_load_test/v8_7/revisions.html => testing/talos/talos/tests/v8_7/revisions.html
rename : testing/talos/talos/page_load_test/v8_7/richards.js => testing/talos/talos/tests/v8_7/richards.js
rename : testing/talos/talos/page_load_test/v8_7/run.html => testing/talos/talos/tests/v8_7/run.html
rename : testing/talos/talos/page_load_test/v8_7/splay.js => testing/talos/talos/tests/v8_7/splay.js
rename : testing/talos/talos/page_load_test/v8_7/style.css => testing/talos/talos/tests/v8_7/style.css
rename : testing/talos/talos/page_load_test/v8_7/v8-logo.png => testing/talos/talos/tests/v8_7/v8-logo.png
rename : testing/talos/talos/page_load_test/v8_7/v8.manifest => testing/talos/talos/tests/v8_7/v8.manifest
rename : testing/talos/talos/page_load_test/webgl/benchmarks/terrain/grass.jpeg => testing/talos/talos/tests/webgl/benchmarks/terrain/grass.jpeg
rename : testing/talos/talos/page_load_test/webgl/benchmarks/terrain/perftest.html => testing/talos/talos/tests/webgl/benchmarks/terrain/perftest.html
rename : testing/talos/talos/page_load_test/webgl/glterrain.manifest => testing/talos/talos/tests/webgl/glterrain.manifest
extra : commitid : 1haa389fmD2
extra : rebase_source : 38183bab6d10e6759f8734c5f7a143f2fba75d7b
2015-09-25 22:39:03 +02:00
Armen Zambrano Gasparnian
9a6999d3f8
Bug 1127449
- For Mozharness' developer's mode do not store the LDAP password unencrypted. NPOTB. DONTBUILD. r=sfink
...
In Mozharness we support a developer mode which is capable of downloading
artifacts from the Release Engineering LDAP protected artifacts.
The credentials are stored for developers convenience unencrypted in a plain
text. This is not wanted by most developers.
In this patch we make sure that the password is prompted of the user once but
we do not store on disk.
--HG--
extra : commitid : GKEIU0I0xgr
extra : rebase_source : 428a112417de2cb0b5c8d9b759f5a3eda3764408
2015-09-29 10:00:27 -04:00
Carsten "Tomcat" Book
57c4378df9
Merge mozilla-central to mozilla-inbound
2015-09-29 12:40:18 +02:00
Henrik Skupin
f2287a4015
Bug 1201588 - Refactor crash symbols handling for firefox-ui-tests scripts. r=armenzg DONTBUILD
2015-09-29 10:37:24 +02:00
Henrik Skupin
07a9c250f8
Bug 1208431 - Allow query_minidump_stackwalk() to take a specific manifest file as parameter. r=jlund
2015-09-29 09:22:42 +02:00
Dustin J. Mitchell
5997fbb0e4
Bug 1209663: remove unused docker images; r=mrrrgn DONOTBUILD
...
--HG--
extra : commitid : 99iJD5rNaqg
extra : rebase_source : af0a1f15505af818682e9bb76b7513538130ccc0
extra : amend_source : 8616c01111eefb2458851b69885064fb513020a7
2015-10-02 11:49:31 -04:00
Wes Kocher
1c9523f3e9
Backed out changeset 5bf9fdd2d084 (bug 1204800) for likely breaking flame-kk builds
2015-09-25 11:30:31 -07:00
Dustin J. Mitchell
227eb62a65
Bug 1208279: use a different cache for static analysis builds; r=ehsan
...
--HG--
extra : commitid : 5bcStOHuhVR
extra : rebase_source : e15d9cd80da188f41256d658eebcc1fc9ca9865b
2015-09-25 11:06:27 -04:00
Dustin J. Mitchell
68f6b884d2
Bug 1208033: don't log exception when influxdb startup fails; r=jlund
...
--HG--
extra : commitid : 91410KUnpoC
extra : rebase_source : 5bc4a9640a8332a9af76ea031b6042955ea8aee9
2015-09-24 08:59:58 -04:00
Julien Pagès
c6b4a8afe3
Bug 1207071 - remove plugins references in talos. r=jmaher
...
--HG--
extra : commitid : LAeiQdbCkDK
extra : rebase_source : fb4982ddd8eb930394f5aaadaa1839794803749d
2015-09-24 19:46:43 +02:00
James Graham
6169183621
Bug 1204120 - Allow passing talos arguments to |mach try|, r=chmanchester
...
This has the side effect that passing -t none doesn't result
in bare -t being passed (because "none" is interpreted as a
test path).
2015-09-25 16:32:59 +01:00
James Graham
538a908e55
Bug 1193264 - Add support for saving and reusing try strings in mach try, r=chmanchester
...
Adds --save and --preset arguments that can be used to store and reuse
frequently used try strings.
2015-09-25 16:32:58 +01:00
James Graham
d3ac719a31
Bug 1193215
- Support for passing test directories through mach try, r=chmanchester
...
This adds support for web-platform-tests to mach try. It changes the implementation
so that instead of passing paths to manifests, the user passes arbitary paths in the
source tree, and tests under that path are run, with test discovery mainly left to
the harness.
2015-09-25 16:32:57 +01:00
Chris Manchester
3846a2d8c8
Bug 1184507 - Disable TestAboutPages:test_type_to_non_remote_tab for being racy. r=ato
...
This test sends keys to the urlbar causing a page navigation, then waits on
the current url to confirm the navigation is reflected. Because the navigation
changes remoteness, the url check and loading the content listener in the
new process race. When the url check wins, it causes a hang by sending a
message before the frame script to receive it loads.
This is a very specific scenario that only impacts tests that need to cause
navigation to in-process pages with key events. If these sort of tests
become a priority, this will need to be revisited.
--HG--
extra : commitid : LRu93romh31
2015-09-25 07:33:11 -07:00
Chris Manchester
cc73ee6143
Bug 1185486 - Part 2: Prevent message listeners from a failed command from causing an out of order response when a content command hangs. r=ato
...
--HG--
extra : commitid : 9x2P0ubHLCZ
2015-09-25 07:33:11 -07:00
Chris Manchester
7c2c936f02
Bug 1185486 - Part 1: Use a timeout when waiting on the browser process after a timed out command. r=jgriffin
...
--HG--
extra : commitid : BisQq4gzA18
2015-09-25 07:33:11 -07:00
Carsten "Tomcat" Book
13afb0c9a2
Backed out 3 changesets (bug 1193264, bug 1193215
, bug 1204120) for S4 Test failures
...
Backed out changeset 3000fca0fc88 (bug 1204120)
Backed out changeset 2e67853b0b70 (bug 1193264)
Backed out changeset ced598ee50fe (bug 1193215
)
--HG--
extra : rebase_source : df58626853ca7748b1a13833363678ca113b2484
2015-09-25 13:13:54 +02:00
John Dai
8158ff2d20
Bug 1204800 - Add tooltool dependencies to phone builds. r=wcosta
2015-09-23 04:12:00 +02:00
John Dai
6a55b81364
Bug 1201370 - Add emulator parameter to cppunit test. r=ahal
...
--HG--
extra : transplant_source : m%B9%7E%11BDp%1Ce%EB%84%1D%A2%9E%5D%1E%0B%D7%FB%C7
2015-09-25 11:49:40 +08:00
James Graham
fc48bbaaab
Bug 1204120 - Allow passing talos arguments to |mach try|, r=chmanchester
...
This has the side effect that passing -t none doesn't result
in bare -t being passed (because "none" is interpreted as a
test path).
2015-09-25 10:45:28 +01:00
James Graham
634916e619
Bug 1193264 - Add support for saving and reusing try strings in mach try, r=chmanchester
...
Adds --save and --preset arguments that can be used to store and reuse
frequently used try strings.
2015-09-25 10:45:20 +01:00
James Graham
29a4f7a370
Bug 1193215
- Support for passing test directories through mach try, r=chmanchester
...
This adds support for web-platform-tests to mach try. It changes the implementation
so that instead of passing paths to manifests, the user passes arbitary paths in the
source tree, and tests under that path are run, with test discovery mainly left to
the harness.
2015-09-25 10:45:17 +01:00
Ehsan Akhgari
a2776c2e6f
Bug 1208275 - Don't run make check on Linux64 debug static analysis builds; r=ted
...
These checks are pointless.
--HG--
extra : rebase_source : e7eac9470413b634401aef3770ee8937cbda4769
2015-09-24 22:29:30 -04:00
Julian Seward
0ce48c0f5e
Bug 1185244 - Improve mach support for running mochitests on Valgrind. r=jgraham, njn.
2015-09-28 12:01:42 +02:00
Ehsan Akhgari
caccfce865
Bug 1207135 - Add linux64-st-an to the set of TaskCluster builds; r=dustin
2015-09-24 11:13:12 -04:00
Dustin J. Mitchell
26fafbdf0d
Bug 1207677: remove unused file; r=wcosta
...
--HG--
extra : commitid : 7qMhSZzpBRO
extra : rebase_source : 6cbbb352c177130dfe1bd5d008e3ab85fabd19a5
2015-09-23 15:40:14 -04:00
Carsten "Tomcat" Book
1c291b5aad
Backed out 4 changesets (bug 1193264, bug 1193215
, bug 1188483, bug 1204120) for test bustage and bustage on a CLOSED TREE
...
Backed out changeset a9a4292b2df3 (bug 1188483)
Backed out changeset 9748ff0d2836 (bug 1204120)
Backed out changeset a0b952bb6620 (bug 1193264)
Backed out changeset 63c61416c2f7 (bug 1193215
)
2015-09-24 13:58:20 +02:00
Rail Aliiev
bb0efe6b1a
Bug 1188483 - desktop_l10n.py should support --locale $locale:$revision. r=jlund
2015-08-27 11:43:45 -04:00
James Graham
5ce827ccac
Bug 1204120 - Allow passing talos arguments to |mach try|.
...
This has the side effect that passing -t none doesn't result
in bare -t being passed (because "none" is interpreted as a
test path).
2015-09-24 11:58:04 +01:00
James Graham
86787b7b7a
Bug 1193264 - Add support for saving and reusing try strings in mach try
...
Adds --save and --preset arguments that can be used to store and reuse
frequently used try strings.
2015-09-24 11:58:04 +01:00
James Graham
66ca06104d
Bug 1193215
- Support for passing test directories through mach try.
...
This adds support for web-platform-tests to mach try. It changes the implementation
so that instead of passing paths to manifests, the user passes arbitary paths in the
source tree, and tests under that path are run, with test discovery mainly left to
the harness.
2015-09-24 11:58:03 +01:00
Carsten "Tomcat" Book
be2a184fb0
Merge mozilla-central to mozilla-inbound
2015-09-24 12:06:06 +02:00
William Lachance
153c11537f
Bug 1200716 - Simplify talos output for perfherder. r=jmaher
2015-09-14 17:52:18 -04:00
Xidorn Quan
c13216ec53
Bug 1205144 - Remove 'REMOVED' commands from output of mach-commands and mach-debug-commands. r=gps DONTBUILD
...
--HG--
extra : source : 7d40827d58f699b57668ad80573e93b3b0a8d0b0
extra : amend_source : 98c5b7adbd1a330528d70a8f41096cd26fe49bdd
2015-09-21 11:32:03 +10:00
Bobby Holley
15e1767e1c
Bug 1189668 - Check CSP before completing channel interception. r=ehsan
2015-09-20 00:32:14 -07:00
Phil Ringnalda
acf019db22
Merge f-t to m-c, a=merge
2015-09-19 20:17:20 -07:00
Phil Ringnalda
a94eeacc8e
Back out changeset c9dbc1119342 (bug 1203085) on suspicion of breaking gaia tests
2015-09-18 23:50:56 -07:00
Phil Ringnalda
102da69c8c
Merge m-c to b-i
2015-09-18 21:54:17 -07:00
Wes Kocher
ab68ce61c7
Merge m-c to inbound, a=merge
2015-09-18 14:04:52 -07:00
Wes Kocher
5413dae30f
Merge b2ginbound to central, a=merge
2015-09-18 14:01:50 -07:00
Mark Banner
5fbb3506f5
Bug 1205591 - Add a basic service channel implementation for listening to Loop's link clicker and opening rooms when requested. r=mikedeboer
2015-09-19 14:22:56 +01:00
Andrew Halberstadt
422647ac94
Bug 1206073 - [xpcshell] Fix default value for testingModulesDir when running from mach, r=jgraham
...
--HG--
extra : commitid : KjVjUrw8IZ4
extra : rebase_source : 4ff826498fb3c303e873b8da760671577bd174b7
2015-09-18 10:00:40 -04:00
Wander Lairson Costa
7091f0f9f4
Bug 1166217: Move phone-builder image to docker hub.
...
quay.io is gone, long live docker hub.
--HG--
extra : commitid : K87GFaexJ9
extra : source : 231127a46d6ea259072a8973d739419976d69683
2015-09-17 17:41:06 +02:00
Edgar Chen
f9e05b82db
Bug 1205934 - Switch Taskcluster Dolphin builds to in-tree mozharness. r=wcosta
2015-09-18 10:44:51 +08:00
Carsten "Tomcat" Book
26bf9e678b
merge mozilla-inbound to mozilla-central a=merge
2015-09-18 13:19:00 +02:00
Wes Kocher
218c9bb81a
Merge m-c to fx-team, a=merge
2015-09-17 15:25:57 -07:00
Wes Kocher
86c8db452c
Merge b2ginbound to central, a=merge
2015-09-17 15:23:20 -07:00
Ronald Claveau
a88389dd17
Bug 1204630 - Allow B2G builds to specify different b2g repo and branch. DONTBUILD. r=armenzg
...
--HG--
extra : commitid : 1z3iqVOs8dB
2015-09-17 15:22:54 -04:00
Wes Kocher
40cee6104d
Backed out changeset 156b6847bbb4 (bug 1186857) for w(4) bustage CLOSED TREE
2015-09-17 11:41:27 -07:00
Wes Kocher
4612e85891
Backed out changeset 4c9d2dab60f3 (bug 1181038) for w(4) failures CLOSED TREE
2015-09-17 11:40:19 -07:00
Wes Kocher
e9df0ab223
Backed out changeset 4717107189fe (bug 1204800) for device build bustage CLOSED TREE
2015-09-17 11:39:14 -07:00
Andreas Tolfsen
9355c18c57
Backed out changeset 820865a790e4 (bug 1202663)
...
CLOSED TREE
--HG--
extra : commitid : D1PsvakkyZm
2015-09-17 17:12:29 +01:00
Carsten "Tomcat" Book
a9d832efac
Merge mozilla-central to b2g-inbound
2015-09-17 15:08:41 +02:00
Wander Lairson Costa
5befe35395
Bug 1205574: Fix cache name typo in try white list. r=garndt
...
s/tc-vcs-public-source/tc-vcs-public-sources/.
--HG--
extra : commitid : L6XcYBV1cr2
extra : rebase_source : 4452869e3d23bca5b6590df3b481420c2200860b
2015-09-17 14:24:24 +02:00
Mike Shal
7e67bc7e72
Bug 1187946 - enable Nexus B2G builds in Taskcluster; r=wcosta
2015-09-16 15:42:56 -04:00
Wes Kocher
ebdcf9fc9e
Merge b2ginbound to central, a=merge CLOSED TREE
2015-09-16 11:00:55 -07:00
Wes Kocher
5b879dacff
Merge mozilla-inbound to m-c a=merge CLOSED TREE
2015-09-16 10:52:53 -07:00
Wander Lairson Costa
f9c5592455
Bug 1203596: Remove .userconfig after run build.sh. r=jlund
...
If we keep the userconfig file inside B2G shared cache, it may
cause build bustage in other branches.
--HG--
extra : commitid : 9gVZFqzmV44
2015-09-16 10:40:40 +02:00
Jordan Lund
a54cdacf58
Bug 1175701 - Windows Puppet machines failing on sendchange, r=backout
...
--HG--
extra : rebase_source : f20fc1961d893f3b6da18610e7d9652a62487f50
2015-09-15 22:28:28 -07:00
Jordan Lund
3a3b80f181
Bug 1191859 - Make bundleclone extension available inside mock, r=nthomas
2015-09-16 12:51:39 +12:00
Wes Kocher
9c01eed3d4
Merge m-c to b2ginbound, a=merge
2015-09-15 17:20:50 -07:00
Wes Kocher
f2349ce9f0
Bug 1188337 - Get mulet gaia unit tests running correctly r=me
...
--HG--
extra : rebase_source : e11019c6c43fe86362f0ff82c45768e62c51f5a4
2015-09-15 15:03:59 -07:00
Alexandre Lissy
1964034a90
Bug 1188337 - Enable Mulet TaskCluster Gu and prepare for Gu-oop r=garndt,aus
...
--HG--
extra : histedit_source : a5f616b7f84e9ea38ce7aea9d02ad186226cc341%2Cafc873906dbdce4f69fbf5d71d0f4cdc70946715
2015-09-15 14:08:01 -07:00
Wes Kocher
3e2e76e6bf
Backed out 2 changesets (bug 1188337) for gu-oop failures
...
Backed out changeset c8e3dac6e7e9 (bug 1188337)
Backed out changeset b009d9d173e2 (bug 1188337)
2015-09-15 13:09:58 -07:00
Aus Lacroix
dc50f2981f
Bug 1188337 - Update mozharness.json to latest revision for TC usage that still requires it. r=me
2015-09-15 11:22:24 -07:00
Aus Lacroix
01a4e5c4c5
Bug 1188337 - Enable Mulet TaskCluster Gu and prepare for Gu-oop r=aus,garndt
2015-09-15 11:07:05 -07:00
Aus Lacroix
ba13e61b18
Backed out changeset 7af7d79708de - missing files.
2015-09-15 11:05:34 -07:00
Aus Lacroix
3044d8f372
Bug 1188337 - Enable Mulet TaskCluster Gu and prepare for Gu-oop r=aus,garndt
2015-09-15 11:04:55 -07:00
Carsten "Tomcat" Book
6944c5ba30
merge mozilla-inbound to mozilla-central a=merge
2015-09-15 15:05:24 +02:00
Carsten "Tomcat" Book
0abaaa325f
merge fx-team to mozilla-central a=merge
2015-09-15 14:59:25 +02:00
Francois Marier
a5e1ea2872
Bug 1205448 - Ship subresource integrity enabled by default. r=ckerschb
2015-09-17 16:33:35 -07:00
Julien Pagès
d2ca40bafa
Bug 1204628 - Talos' setup.py does not install psutil into virtualenv.r=jmaher
...
--HG--
extra : commitid : 8hcj1zngmWS
extra : rebase_source : 9378511894288f08f2048a15f29d0443768836aa
2015-09-15 07:16:42 +02:00
Neil Deakin
7da9fc5e62
Bug 1197266, Reset pushed pref environment between browser tests, r=martijn
2015-09-17 11:20:32 -04:00
Wes Kocher
d2b57046d1
Merge m-c to inbound, a=merge CLOSED TREE
2015-09-17 15:27:39 -07:00
David Burns
cf7ee31873
Bug 1204496: When searching by link text start from the startNode and not the rootNode; r=ato
...
--HG--
extra : commitid : B41EB2spDLA
extra : rebase_source : 19077dc84eefe0b11d862c04dc1f8bbc595cca82
2015-09-17 22:22:38 +01:00
Ted Mielczarek
24906081e2
bug 1204870 - Fixup mac task definition. r=dustin
...
--HG--
extra : commitid : Ia3csL16f3U
extra : rebase_source : e6a2c12239aefab0f313c559109e8cd5e02d335e
2015-09-15 08:53:17 -04:00
Wes Kocher
e2c033639c
Backed out 7 changesets (bug 1181516, bug 1198257, bug 1193257
, bug 1194166, bug 1193223, bug 1193224
, bug 1181520) for breaking android 4.0 debug reftests CLOSED TREE
...
Backed out changeset 25f22b3433e0 (bug 1194166)
Backed out changeset a824847677c5 (bug 1193257
)
Backed out changeset 6cc19a8f1bb0 (bug 1193224
)
Backed out changeset bf1271f6cfa0 (bug 1198257)
Backed out changeset 75b3c43770bd (bug 1193223)
Backed out changeset 81a5cf4c8f19 (bug 1181516)
Backed out changeset db3691ee6fd1 (bug 1181520)
2015-09-15 08:52:19 -07:00
Ben Kelly
d3c04d83c9
Bug 1182094 Fix wpt sandboxed-iframes.https.html test to expect rejected promises. r=jgraham
2015-09-15 08:04:13 -07:00
James Graham
9bc5dbefb0
Bug 1194166 - Update unittest mozconfigs for all platforms, r=chmanchester,jlund
2015-09-15 15:33:38 +01:00
James Graham
b2ff60e70c
Bug 1193257
- Make xpcshell harness command line arguments path filters for tests, r=ahal
2015-09-15 15:33:37 +01:00
James Graham
bf3f4b3d18
Bug 1193224
- Remove vestigial --tests-root-dir option from xpcshell tests, r=ahal
2015-09-15 15:33:36 +01:00
James Graham
1b361ed03b
Bug 1193223 - Add reftest support to mach test, r=chmanchester
2015-09-15 15:33:34 +01:00
James Graham
5042d96464
Bug 1181516 - Allow reftests to take paths to multiple directories containing tests on the command line, r=jmaher
...
This makes reftest command line arguments behave more like other test suites,
so we can use a simple unified syntax for e.g. |mach try|. The patch also
reworks the command line argument parsing to use argparse rather than optparse,
and causes mach to reuse the same parser as the suite.
2015-09-15 15:33:33 +01:00
Carsten "Tomcat" Book
fa147338f3
Merge mozilla-central to mozilla-inbound
2015-09-15 15:10:11 +02:00
James Graham
4d0fe31fbc
Bug 1105760 - Increase timeout for unstable Media Source test, rs=Ms2ger
2015-09-18 13:25:06 +01:00
Lee Salzman
faffee9274
Bug 655328 - remove failure meta-data for WPT for 2dcontext/drawing-images-to-the-canvas/drawimage_canvas_8.html. r=jmuizelaar
...
--HG--
extra : rebase_source : af3739cf852a93a7f9c8a6435dd3cd79a77407f5
2015-09-11 10:13:11 -04:00
Lee Salzman
6367070446
Bug 1074733 - Part 3 - remove failure meta-data for WPT tests with canvas drawImage with negative rects. r=james
...
--HG--
extra : rebase_source : d96b6140d07218a1536ca96a08b69cdff02addbc
2015-09-10 13:01:18 -04:00
Nikhil Marathe
ea511956c4
Bug 1186857 - Update web-platform-tests expected data. r=jgraham
...
Comparing scopes for now, added a note to Bug 1201127 to fix this.
--HG--
extra : commitid : DSVnlHJ05qW
extra : rebase_source : 73bb517f418509b0200c8932ff3672dd7743dc4c
2015-09-08 16:45:42 -07:00
Geoff Brown
2df062e513
Bug 1206142 - Use adb as default devicemanager for Android xpcshell tests; r=jgraham
2015-09-18 13:51:57 -06:00
Wes Kocher
100b3d6563
Backed out 4 changesets (bug 1141519) for likely breaking Windows marionette tests
...
Backed out changeset 4f0cd3e94c0a (bug 1141519)
Backed out changeset 2c319ee6609b (bug 1141519)
Backed out changeset 2101909374c0 (bug 1141519)
Backed out changeset 5e3cbd7c84fa (bug 1141519)
2015-09-18 12:08:58 -07:00
Carsten "Tomcat" Book
29f415af35
Merge mozilla-central to mozilla-inbound
2015-09-18 13:25:30 +02:00
Andreas Tolfsen
7e04695f88
Bug 1205638: Remove findChildElement and findChildElements commands
...
The findChildElement and findChildElements commands were originally
added to provide Selenium compatibility because it sends an "id" field
in the body.
They are both unneeded now that we have wires which extracts the element
ID from the URI template and sets the "element" field that the normal
findElement and findElements commands use.
r=dburns
--HG--
extra : commitid : 9UOUJoukHH1
extra : rebase_source : 2f848ebbfa69b82b03d718340b8203d9183083d6
2015-09-17 14:05:51 +01:00
James Graham
f6fc85a3cd
Bug 1197365 - Update metadata for web-platform-tests-e10s a=testonly
2015-09-18 10:04:43 +01:00
Andrew McCreight
ac5e9c32f9
Bug 1205348 - Always do shutdown CCs when NS_FREE_PERMANENT_DATA is defined. r=smaug
2015-09-16 10:10:00 +02:00
Christoph Kerschbaumer
1ac9384aa0
Bug 1026520 - CSP: Inline report sending into allows - web platform test updates (r=deveditz)
2015-09-17 22:36:08 -07:00
Edgar Chen
20e08cfa9e
Bug 1203037 - Disable Tethering/NFC marionette-webapi tests on emulator-x86-kk first. r=dimi,henry
2015-09-11 15:12:40 +08:00
Andreas Tolfsen
aac49c7749
Bug 1202663: Use dispatcher for screen capture command in listener
...
r=dburns
--HG--
extra : commitid : 2B70dNWKSym
extra : rebase_source : 7ae9c5365a87619d18be8fd2e245c27d379e65ff
2015-09-08 15:26:19 +01:00
David Burns
15c1a2284a
Bug 1137972: Return W3C and WebDriver id keys from Marionette; r=jgriffin
...
--HG--
extra : commitid : 7zk0mE7mqH4
extra : rebase_source : d49cd88f02319c6e7135288448f9bde3e4b874a3
2015-09-14 13:42:38 +01:00
David Burns
f804a7c499
Bug 1137972: Send W3C Element Key to Marionette Server from python client; r=jgriffin
...
--HG--
extra : commitid : ANe5Qu0dCA8
extra : rebase_source : 29b7a460cc3ed201caf963a10756430b79dbd5c5
2015-09-15 20:45:39 +01:00