Bug 1638952: remove check-spidermonkey mach command. r=sfink,releng-reviewers,aki DONTBUILD

Differential Revision: https://phabricator.services.mozilla.com/D94159
This commit is contained in:
Ben Hearsum 2020-10-22 13:12:32 +00:00
parent da711631ea
commit b81bccea51
3 changed files with 0 additions and 31 deletions

1
mach
View File

@ -14,7 +14,6 @@
py2commands="
android
awsy-test
check-spidermonkey
crashtest
firefox-ui-functional
geckodriver

View File

@ -565,31 +565,6 @@ class SpiderMonkeyTests(MachCommandBase):
return subprocess.call(check_cmd)
@Command('check-spidermonkey', category='testing',
description='Run SpiderMonkey tests (JavaScript engine).')
@CommandArgument('--valgrind', action='store_true',
help='Run jit-test suite with valgrind flag')
def run_checkspidermonkey(self, valgrind=False):
print('Running jit-tests')
jittest_args = [
'--no-slow',
'--jitflags=all',
]
if valgrind:
jittest_args.append('--valgrind')
jittest_result = self.run_jittests(shell=None, params=jittest_args)
print('running jstests')
jstest_result = self.run_jstests(shell=None, params=[])
print('running jsapi-tests')
jsapi_tests_result = self.run_jsapitests(test_name=None)
print('running check-js-msg-encoding')
check_js_msg_result = self.run_check_js_msg()
return jittest_result and jstest_result and jsapi_tests_result and check_js_msg_result
def get_jsshell_parser():
from jsshell.benchmark import get_parser

View File

@ -70,11 +70,6 @@ TEST_SUITES = {
'mach_command': 'firefox-ui-update',
'kwargs': {},
},
'check-spidermonkey': {
'aliases': ('sm',),
'mach_command': 'check-spidermonkey',
'kwargs': {'valgrind': False},
},
# TODO(ato): integrate geckodriver tests with moz.build
'geckodriver': {
'aliases': ('testing/geckodriver',),