☠☠ backed out by 3408740409b3 ☠ ☠ | |
author | Ted Mielczarek <ted@mielczarek.org> |
Fri, 20 Sep 2013 12:57:30 -0400 | |
changeset 148655 | 5b1a56afe15396e59c65d4acbf3c18341d2a0963 |
parent 148654 | 2e3017bef2c676e75dd0eb27e7a1e7fecafa1e54 |
child 148656 | 0fae05649fe849dd6277c920c467c8ff0580767d |
push id | 25349 |
push user | ryanvm@gmail.com |
push date | Wed, 25 Sep 2013 18:52:12 +0000 |
treeherder | mozilla-central@39f30376058c [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | gps |
bugs | 919635 |
milestone | 27.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
--- a/dom/media/tests/mochitest/moz.build +++ b/dom/media/tests/mochitest/moz.build @@ -1,6 +1,7 @@ # -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*- # vim: set filetype=python: # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. +WEBRTC_SIGNALLING_TEST_MANIFESTS += ['steeplechase.ini']
new file mode 100644 --- /dev/null +++ b/dom/media/tests/mochitest/steeplechase.ini @@ -0,0 +1,8 @@ +[DEFAULT] +support-files = + head.js + mediaStreamPlayback.js + pc.js + templates.js + +[test_peerConnection_basicAudio.html]
--- a/python/mozbuild/mozbuild/frontend/emitter.py +++ b/python/mozbuild/mozbuild/frontend/emitter.py @@ -216,16 +216,17 @@ class TreeMetadataEmitter(LoggingMixin): # We ideally don't filter out inactive tests. However, not every test # harness can yet deal with test filtering. Once all harnesses can do # this, this feature can be dropped. test_manifests = dict( A11Y=('a11y', 'testing/mochitest/a11y', True), BROWSER_CHROME=('browser-chrome', 'testing/mochitest/browser', True), MOCHITEST=('mochitest', 'testing/mochitest/tests', True), MOCHITEST_CHROME=('chrome', 'testing/mochitest/chrome', True), + WEBRTC_SIGNALLING_TEST=('steeplechase', 'steeplechase', True), XPCSHELL_TESTS=('xpcshell', 'xpcshell', False), ) for prefix, info in test_manifests.items(): for path in sandbox.get('%s_MANIFESTS' % prefix, []): for obj in self._process_test_manifest(sandbox, info, path): yield obj
--- a/python/mozbuild/mozbuild/frontend/sandbox_symbols.py +++ b/python/mozbuild/mozbuild/frontend/sandbox_symbols.py @@ -462,16 +462,19 @@ VARIABLES = { 'MOCHITEST_MANIFESTS': (StrictOrderingOnAppendList, list, [], """List of manifest files defining mochitest tests. """), 'MOCHITEST_CHROME_MANIFESTS': (StrictOrderingOnAppendList, list, [], """List of manifest files defining mochitest chrome tests. """), + 'WEBRTC_SIGNALLING_TEST_MANIFESTS': (StrictOrderingOnAppendList, list, [], + """List of manifest files defining WebRTC signalling tests."""), + 'XPCSHELL_TESTS_MANIFESTS': (StrictOrderingOnAppendList, list, [], """List of manifest files defining xpcshell tests. """), } # The set of functions exposed to the sandbox. # # Each entry is a tuple of: