Bug 1215084 - Part 1: Add symbols-url option to emulator tests for taskcluster; r=hal

--HG--
extra : commitid : 4PD5kIZzt8W
extra : rebase_source : 57394a2af2c946199f9baf88954ea2409e6f0d62
This commit is contained in:
Edgar Chen 2016-01-04 11:40:52 +08:00
Родитель 1bf24321f1
Коммит df77c05c37
1 изменённых файлов: 8 добавлений и 0 удалений

Просмотреть файл

@ -103,6 +103,13 @@ class B2GEmulatorTest(TestingMixin, VCSMixin, BaseScript, BlobUploadMixin):
"dest": "test_path",
"help": "Path of tests to run",
}
], [
["--symbols-url"],
{"action": "store",
"dest": "symbols_url",
"default": None,
"help": "URL to the symbols which is used for crash reporter",
}
]] + copy.deepcopy(testing_config_options) \
+ copy.deepcopy(blobupload_config_options)
@ -146,6 +153,7 @@ class B2GEmulatorTest(TestingMixin, VCSMixin, BaseScript, BlobUploadMixin):
self.test_packages_url = c.get('test_packages_url')
self.test_manifest = c.get('test_manifest')
self.busybox_path = None
self.symbols_url = c.get('symbols_url')
# TODO detect required config items and fail if not set