зеркало из https://github.com/mozilla/gecko-dev.git
57 строки
1.6 KiB
Python
Executable File
57 строки
1.6 KiB
Python
Executable File
#!/usr/bin/env python
|
|
# ***** BEGIN LICENSE BLOCK *****
|
|
# 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/.
|
|
# ***** END LICENSE BLOCK *****
|
|
|
|
import os
|
|
import sys
|
|
|
|
# load modules from parent dir
|
|
sys.path.insert(1, os.path.dirname(sys.path[0]))
|
|
|
|
from mozharness.mozilla.testing.gaia_test import GaiaTest
|
|
from mozharness.mozilla.testing.unittest import TestSummaryOutputParserHelper
|
|
|
|
|
|
class GaiaBuildUnitTest(GaiaTest):
|
|
|
|
def __init__(self, require_config_file=False):
|
|
GaiaTest.__init__(self, require_config_file)
|
|
|
|
def run_tests(self):
|
|
"""
|
|
Run the gaia build unit test suite.
|
|
"""
|
|
dirs = self.query_abs_dirs()
|
|
|
|
self.node_setup()
|
|
|
|
output_parser = TestSummaryOutputParserHelper(
|
|
config=self.config, log_obj=self.log_obj, error_list=self.error_list)
|
|
|
|
cmd = [
|
|
'make',
|
|
'build-test-unit',
|
|
'REPORTER=mocha-tbpl-reporter',
|
|
'NODE_MODULES_SRC=npm-cache',
|
|
'VIRTUALENV_EXISTS=1',
|
|
'TRY_ENV=1'
|
|
]
|
|
|
|
# for Mulet
|
|
if 'firefox' in self.binary_path:
|
|
cmd += ['RUNTIME=%s' % self.binary_path]
|
|
|
|
code = self.run_command(cmd, cwd=dirs['abs_gaia_dir'],
|
|
output_parser=output_parser,
|
|
output_timeout=330)
|
|
|
|
output_parser.print_summary('gaia-build-unit-tests')
|
|
self.publish(code)
|
|
|
|
if __name__ == '__main__':
|
|
gaia_build_unit_test = GaiaBuildUnitTest()
|
|
gaia_build_unit_test.run_and_exit()
|