зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1497339 - Fix reftests in the Tup backend. r=ted,firefox-build-system-reviewers
Differential Revision: https://phabricator.services.mozilla.com/D8284 --HG-- extra : moz-landing-system : lando
This commit is contained in:
Родитель
c97a0087e4
Коммит
8632e09b6b
|
@ -1,14 +0,0 @@
|
|||
# vim: set shiftwidth=8 tabstop=8 autoindent noexpandtab copyindent:
|
||||
# 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/.
|
||||
|
||||
_DEST_DIR = $(DEPTH)/_tests/reftest
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
# copy harness and the reftest extension bits to $(_DEST_DIR)
|
||||
# This needs to happen after jar.mn handling from rules.mk included above.
|
||||
# The order of the :: rules ensures that.
|
||||
libs::
|
||||
(cd $(DIST)/xpi-stage && tar $(TAR_CREATE_FLAGS) - reftest) | (cd $(_DEST_DIR) && tar -xf -)
|
|
@ -313,8 +313,8 @@ class ReftestArgumentsParser(argparse.ArgumentParser):
|
|||
|
||||
if options.reftestExtensionPath is None:
|
||||
if self.build_obj is not None:
|
||||
reftestExtensionPath = os.path.join(self.build_obj.topobjdir, "_tests",
|
||||
"reftest", "reftest")
|
||||
reftestExtensionPath = os.path.join(self.build_obj.distdir,
|
||||
"xpi-stage", "reftest")
|
||||
else:
|
||||
reftestExtensionPath = os.path.join(here, "reftest")
|
||||
options.reftestExtensionPath = os.path.normpath(reftestExtensionPath)
|
||||
|
@ -322,8 +322,8 @@ class ReftestArgumentsParser(argparse.ArgumentParser):
|
|||
if (options.specialPowersExtensionPath is None and
|
||||
options.suite in ["crashtest", "jstestbrowser"]):
|
||||
if self.build_obj is not None:
|
||||
specialPowersExtensionPath = os.path.join(self.build_obj.topobjdir, "_tests",
|
||||
"reftest", "specialpowers")
|
||||
specialPowersExtensionPath = os.path.join(self.build_obj.distdir,
|
||||
"xpi-stage", "specialpowers")
|
||||
else:
|
||||
specialPowersExtensionPath = os.path.join(here, "specialpowers")
|
||||
options.specialPowersExtensionPath = os.path.normpath(specialPowersExtensionPath)
|
||||
|
|
|
@ -409,7 +409,19 @@ ARCHIVE_FILES = {
|
|||
'testing/crashtest/crashtests.list',
|
||||
],
|
||||
'dest': 'reftest/tests',
|
||||
}
|
||||
},
|
||||
{
|
||||
'source': buildconfig.topobjdir,
|
||||
'base': 'dist/xpi-stage',
|
||||
'pattern': 'reftest/**',
|
||||
'dest': 'reftest'
|
||||
},
|
||||
{
|
||||
'source': buildconfig.topobjdir,
|
||||
'base': 'dist/xpi-stage',
|
||||
'pattern': 'specialpowers/**',
|
||||
'dest': 'reftest'
|
||||
},
|
||||
],
|
||||
'talos': [
|
||||
{
|
||||
|
|
|
@ -3,16 +3,4 @@
|
|||
# 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/.
|
||||
|
||||
TEST_EXTENSIONS_DIR = $(DEPTH)/testing/specialpowers
|
||||
XPI_PKGNAME = specialpowers@mozilla.org
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
libs-preqs = \
|
||||
$(call mkdir_deps,$(TEST_EXTENSIONS_DIR)) \
|
||||
$(NULL)
|
||||
|
||||
libs:: $(libs-preqs)
|
||||
(cd $(DIST)/xpi-stage && tar $(TAR_CREATE_FLAGS) - $(XPI_NAME)) | (cd $(TEST_EXTENSIONS_DIR) && tar -xf -)
|
||||
$(NSINSTALL) -D $(DEPTH)/_tests/reftest/specialpowers
|
||||
cp -RL $(DEPTH)/testing/specialpowers/specialpowers $(DEPTH)/_tests/reftest
|
||||
|
|
Загрузка…
Ссылка в новой задаче