2008-09-09 20:08:45 +00:00
|
|
|
# Copyright 2008 the V8 project authors. All rights reserved.
|
2008-08-22 13:33:59 +00:00
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
|
|
# modification, are permitted provided that the following conditions are
|
|
|
|
# met:
|
|
|
|
#
|
|
|
|
# * Redistributions of source code must retain the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer.
|
|
|
|
# * Redistributions in binary form must reproduce the above
|
|
|
|
# copyright notice, this list of conditions and the following
|
|
|
|
# disclaimer in the documentation and/or other materials provided
|
|
|
|
# with the distribution.
|
|
|
|
# * Neither the name of Google Inc. nor the names of its
|
|
|
|
# contributors may be used to endorse or promote products derived
|
|
|
|
# from this software without specific prior written permission.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
2018-02-01 13:42:01 +00:00
|
|
|
from collections import OrderedDict
|
|
|
|
import itertools
|
2008-08-22 13:33:59 +00:00
|
|
|
import os
|
|
|
|
import re
|
2012-09-24 09:38:46 +00:00
|
|
|
|
2018-01-29 15:51:03 +00:00
|
|
|
from testrunner.local import statusfile
|
2012-09-24 09:38:46 +00:00
|
|
|
from testrunner.local import testsuite
|
2017-12-13 12:47:24 +00:00
|
|
|
from testrunner.objects import testcase
|
2018-01-25 15:18:29 +00:00
|
|
|
from testrunner.outproc import base as outproc
|
2008-08-22 13:33:59 +00:00
|
|
|
|
2009-04-15 01:22:52 +00:00
|
|
|
FILES_PATTERN = re.compile(r"//\s+Files:(.*)")
|
Reland of [date] Add ICU backend for timezone info behind a flag (patchset #1 id:1 of https://codereview.chromium.org/2811103002/ )
Reason for revert:
Reland with tests marked as off in no-i18n mode
Original issue's description:
> Revert of [date] Add ICU backend for timezone info behind a flag (patchset #17 id:320001 of https://codereview.chromium.org/2724373002/ )
>
> Reason for revert:
> Breaks noi18n:
> https://build.chromium.org/p/client.v8/builders/V8%20Linux%20-%20noi18n%20-%20debug/builds/13314
>
> Original issue's description:
> > [date] Add ICU backend for timezone info behind a flag
> >
> > This patch implements a timezone backend which is based on ICU, rather
> > than operating system calls. It can be turned on by passing the
> > --icu-timezone-data flag. The goal here is to take advantage of ICU's
> > data, which is more complete than the data that some system calls expose.
> > For example, without any special code, this patch fixes the time zone
> > of Lord Howe Island to have a correct 30 minute DST offset, rather than
> > 60 minutes as the OS backends assume it to have.
> >
> > Unfortunately, the parenthized timezone name in Date.prototype.toString()
> > differs across platforms. This patch chooses the long timezone name,
> > which matches Windows behavior and might be the most intelligible, but
> > the web compatibility impact is unclear.
> >
> > BUG=v8:6031,v8:2137,v8:6076
> >
> > Review-Url: https://codereview.chromium.org/2724373002
> > Cr-Commit-Position: refs/heads/master@{#44562}
> > Committed: https://chromium.googlesource.com/v8/v8/+/b213f2399038a615cdfbfa0201cddc113d304018
>
> TBR=ulan@chromium.org,jshin@chromium.org,jgruber@chromium.org,littledan@chromium.org
> # Skipping CQ checks because original CL landed less than 1 days ago.
> NOPRESUBMIT=true
> NOTREECHECKS=true
> NOTRY=true
> BUG=v8:6031,v8:2137,v8:6076
>
> Review-Url: https://codereview.chromium.org/2811103002
> Cr-Commit-Position: refs/heads/master@{#44565}
> Committed: https://chromium.googlesource.com/v8/v8/+/13ad50811024ace5623d5d4d13cea4ef21f4affd
TBR=ulan@chromium.org,jshin@chromium.org,jgruber@chromium.org,machenbach@chromium.org
BUG=v8:6031,v8:2137,v8:6076
Review-Url: https://codereview.chromium.org/2813863002
Cr-Commit-Position: refs/heads/master@{#44575}
2017-04-11 13:17:29 +00:00
|
|
|
ENV_PATTERN = re.compile(r"//\s+Environment Variables:(.*)")
|
2009-07-09 06:39:38 +00:00
|
|
|
SELF_SCRIPT_PATTERN = re.compile(r"//\s+Env: TEST_FILE_NAME")
|
2015-02-10 19:11:44 +00:00
|
|
|
MODULE_PATTERN = re.compile(r"^// MODULE$", flags=re.MULTILINE)
|
2015-05-19 14:51:10 +00:00
|
|
|
NO_HARNESS_PATTERN = re.compile(r"^// NO HARNESS$", flags=re.MULTILINE)
|
2008-08-22 13:33:59 +00:00
|
|
|
|
2018-02-01 13:42:01 +00:00
|
|
|
# Flags known to misbehave when combining arbitrary mjsunit tests.
|
|
|
|
COMBINE_TESTS_FLAGS_BLACKLIST = [
|
|
|
|
'--mock-arraybuffer-allocator',
|
|
|
|
'--wasm-lazy-compilation',
|
|
|
|
]
|
2008-08-22 13:33:59 +00:00
|
|
|
|
2017-12-13 12:47:24 +00:00
|
|
|
class TestSuite(testsuite.TestSuite):
|
2018-02-01 10:01:21 +00:00
|
|
|
def ListTests(self):
|
2012-09-24 09:38:46 +00:00
|
|
|
tests = []
|
2015-09-04 23:15:52 +00:00
|
|
|
for dirname, dirs, files in os.walk(self.root, followlinks=True):
|
2012-09-24 09:38:46 +00:00
|
|
|
for dotted in [x for x in dirs if x.startswith('.')]:
|
|
|
|
dirs.remove(dotted)
|
|
|
|
dirs.sort()
|
|
|
|
files.sort()
|
|
|
|
for filename in files:
|
2018-01-29 15:51:03 +00:00
|
|
|
if (filename.endswith(".js") and
|
|
|
|
filename != "mjsunit.js" and
|
|
|
|
filename != "mjsunit_suppressions.js"):
|
2015-09-17 13:00:57 +00:00
|
|
|
fullpath = os.path.join(dirname, filename)
|
|
|
|
relpath = fullpath[len(self.root) + 1 : -3]
|
|
|
|
testname = relpath.replace(os.path.sep, "/")
|
2017-12-12 21:33:16 +00:00
|
|
|
test = self._create_test(testname)
|
2012-09-24 09:38:46 +00:00
|
|
|
tests.append(test)
|
|
|
|
return tests
|
|
|
|
|
2018-01-25 15:18:29 +00:00
|
|
|
def _test_combiner_class(self):
|
|
|
|
return TestCombiner
|
|
|
|
|
2017-12-12 21:33:16 +00:00
|
|
|
def _test_class(self):
|
2017-12-13 12:47:24 +00:00
|
|
|
return TestCase
|
2017-12-12 21:33:16 +00:00
|
|
|
|
2018-01-29 15:51:03 +00:00
|
|
|
def _suppressed_test_class(self):
|
|
|
|
return SuppressedTestCase
|
|
|
|
|
2017-12-12 21:33:16 +00:00
|
|
|
|
2017-12-13 12:47:24 +00:00
|
|
|
class TestCase(testcase.TestCase):
|
2017-12-12 21:33:16 +00:00
|
|
|
def __init__(self, *args, **kwargs):
|
2017-12-13 12:47:24 +00:00
|
|
|
super(TestCase, self).__init__(*args, **kwargs)
|
2017-11-16 14:42:28 +00:00
|
|
|
|
2017-12-12 21:33:16 +00:00
|
|
|
source = self.get_source()
|
2012-09-24 09:38:46 +00:00
|
|
|
|
|
|
|
files_list = [] # List of file names to append to command arguments.
|
|
|
|
files_match = FILES_PATTERN.search(source);
|
|
|
|
# Accept several lines of 'Files:'.
|
|
|
|
while True:
|
|
|
|
if files_match:
|
|
|
|
files_list += files_match.group(1).strip().split()
|
|
|
|
files_match = FILES_PATTERN.search(source, files_match.end())
|
|
|
|
else:
|
|
|
|
break
|
2017-12-12 21:33:16 +00:00
|
|
|
files = [ os.path.normpath(os.path.join(self.suite.root, '..', '..', f))
|
2012-09-24 09:38:46 +00:00
|
|
|
for f in files_list ]
|
2017-12-18 14:13:14 +00:00
|
|
|
testfilename = os.path.join(self.suite.root,
|
|
|
|
self.path + self._get_suffix())
|
2012-09-24 09:38:46 +00:00
|
|
|
if SELF_SCRIPT_PATTERN.search(source):
|
2017-11-16 14:42:28 +00:00
|
|
|
files = (
|
|
|
|
["-e", "TEST_FILE_NAME=\"%s\"" % testfilename.replace("\\", "\\\\")] +
|
|
|
|
files)
|
2015-01-20 10:17:21 +00:00
|
|
|
|
2017-12-12 21:33:16 +00:00
|
|
|
if NO_HARNESS_PATTERN.search(source):
|
|
|
|
mjsunit_files = []
|
|
|
|
else:
|
|
|
|
mjsunit_files = [os.path.join(self.suite.root, "mjsunit.js")]
|
2015-02-10 19:11:44 +00:00
|
|
|
|
2017-12-12 21:33:16 +00:00
|
|
|
files_suffix = []
|
2015-02-10 19:11:44 +00:00
|
|
|
if MODULE_PATTERN.search(source):
|
2017-12-12 21:33:16 +00:00
|
|
|
files_suffix.append("--module")
|
|
|
|
files_suffix.append(testfilename)
|
|
|
|
|
|
|
|
self._source_files = files
|
|
|
|
self._source_flags = self._parse_source_flags(source)
|
|
|
|
self._mjsunit_files = mjsunit_files
|
|
|
|
self._files_suffix = files_suffix
|
|
|
|
self._env = self._parse_source_env(source)
|
|
|
|
|
|
|
|
def _parse_source_env(self, source):
|
Reland of [date] Add ICU backend for timezone info behind a flag (patchset #1 id:1 of https://codereview.chromium.org/2811103002/ )
Reason for revert:
Reland with tests marked as off in no-i18n mode
Original issue's description:
> Revert of [date] Add ICU backend for timezone info behind a flag (patchset #17 id:320001 of https://codereview.chromium.org/2724373002/ )
>
> Reason for revert:
> Breaks noi18n:
> https://build.chromium.org/p/client.v8/builders/V8%20Linux%20-%20noi18n%20-%20debug/builds/13314
>
> Original issue's description:
> > [date] Add ICU backend for timezone info behind a flag
> >
> > This patch implements a timezone backend which is based on ICU, rather
> > than operating system calls. It can be turned on by passing the
> > --icu-timezone-data flag. The goal here is to take advantage of ICU's
> > data, which is more complete than the data that some system calls expose.
> > For example, without any special code, this patch fixes the time zone
> > of Lord Howe Island to have a correct 30 minute DST offset, rather than
> > 60 minutes as the OS backends assume it to have.
> >
> > Unfortunately, the parenthized timezone name in Date.prototype.toString()
> > differs across platforms. This patch chooses the long timezone name,
> > which matches Windows behavior and might be the most intelligible, but
> > the web compatibility impact is unclear.
> >
> > BUG=v8:6031,v8:2137,v8:6076
> >
> > Review-Url: https://codereview.chromium.org/2724373002
> > Cr-Commit-Position: refs/heads/master@{#44562}
> > Committed: https://chromium.googlesource.com/v8/v8/+/b213f2399038a615cdfbfa0201cddc113d304018
>
> TBR=ulan@chromium.org,jshin@chromium.org,jgruber@chromium.org,littledan@chromium.org
> # Skipping CQ checks because original CL landed less than 1 days ago.
> NOPRESUBMIT=true
> NOTREECHECKS=true
> NOTRY=true
> BUG=v8:6031,v8:2137,v8:6076
>
> Review-Url: https://codereview.chromium.org/2811103002
> Cr-Commit-Position: refs/heads/master@{#44565}
> Committed: https://chromium.googlesource.com/v8/v8/+/13ad50811024ace5623d5d4d13cea4ef21f4affd
TBR=ulan@chromium.org,jshin@chromium.org,jgruber@chromium.org,machenbach@chromium.org
BUG=v8:6031,v8:2137,v8:6076
Review-Url: https://codereview.chromium.org/2813863002
Cr-Commit-Position: refs/heads/master@{#44575}
2017-04-11 13:17:29 +00:00
|
|
|
env_match = ENV_PATTERN.search(source)
|
2017-11-16 14:42:28 +00:00
|
|
|
env = {}
|
Reland of [date] Add ICU backend for timezone info behind a flag (patchset #1 id:1 of https://codereview.chromium.org/2811103002/ )
Reason for revert:
Reland with tests marked as off in no-i18n mode
Original issue's description:
> Revert of [date] Add ICU backend for timezone info behind a flag (patchset #17 id:320001 of https://codereview.chromium.org/2724373002/ )
>
> Reason for revert:
> Breaks noi18n:
> https://build.chromium.org/p/client.v8/builders/V8%20Linux%20-%20noi18n%20-%20debug/builds/13314
>
> Original issue's description:
> > [date] Add ICU backend for timezone info behind a flag
> >
> > This patch implements a timezone backend which is based on ICU, rather
> > than operating system calls. It can be turned on by passing the
> > --icu-timezone-data flag. The goal here is to take advantage of ICU's
> > data, which is more complete than the data that some system calls expose.
> > For example, without any special code, this patch fixes the time zone
> > of Lord Howe Island to have a correct 30 minute DST offset, rather than
> > 60 minutes as the OS backends assume it to have.
> >
> > Unfortunately, the parenthized timezone name in Date.prototype.toString()
> > differs across platforms. This patch chooses the long timezone name,
> > which matches Windows behavior and might be the most intelligible, but
> > the web compatibility impact is unclear.
> >
> > BUG=v8:6031,v8:2137,v8:6076
> >
> > Review-Url: https://codereview.chromium.org/2724373002
> > Cr-Commit-Position: refs/heads/master@{#44562}
> > Committed: https://chromium.googlesource.com/v8/v8/+/b213f2399038a615cdfbfa0201cddc113d304018
>
> TBR=ulan@chromium.org,jshin@chromium.org,jgruber@chromium.org,littledan@chromium.org
> # Skipping CQ checks because original CL landed less than 1 days ago.
> NOPRESUBMIT=true
> NOTREECHECKS=true
> NOTRY=true
> BUG=v8:6031,v8:2137,v8:6076
>
> Review-Url: https://codereview.chromium.org/2811103002
> Cr-Commit-Position: refs/heads/master@{#44565}
> Committed: https://chromium.googlesource.com/v8/v8/+/13ad50811024ace5623d5d4d13cea4ef21f4affd
TBR=ulan@chromium.org,jshin@chromium.org,jgruber@chromium.org,machenbach@chromium.org
BUG=v8:6031,v8:2137,v8:6076
Review-Url: https://codereview.chromium.org/2813863002
Cr-Commit-Position: refs/heads/master@{#44575}
2017-04-11 13:17:29 +00:00
|
|
|
if env_match:
|
|
|
|
for env_pair in env_match.group(1).strip().split():
|
|
|
|
var, value = env_pair.split('=')
|
2017-11-16 14:42:28 +00:00
|
|
|
env[var] = value
|
|
|
|
return env
|
2012-09-24 09:38:46 +00:00
|
|
|
|
2017-12-12 21:33:16 +00:00
|
|
|
def _get_source_flags(self):
|
|
|
|
return self._source_flags
|
|
|
|
|
2018-01-31 12:01:49 +00:00
|
|
|
def _get_files_params(self):
|
2017-12-12 21:33:16 +00:00
|
|
|
files = list(self._source_files)
|
2018-01-31 12:01:49 +00:00
|
|
|
if not self._test_config.no_harness:
|
2017-12-12 21:33:16 +00:00
|
|
|
files += self._mjsunit_files
|
|
|
|
files += self._files_suffix
|
2018-01-31 12:01:49 +00:00
|
|
|
if self._test_config.isolates:
|
2017-12-12 21:33:16 +00:00
|
|
|
files += ['--isolate'] + files
|
|
|
|
|
|
|
|
return files
|
|
|
|
|
|
|
|
def _get_cmd_env(self):
|
|
|
|
return self._env
|
2017-12-11 20:25:41 +00:00
|
|
|
|
2017-12-12 21:33:16 +00:00
|
|
|
def _get_source_path(self):
|
|
|
|
return os.path.join(self.suite.root, self.path + self._get_suffix())
|
2012-09-24 09:38:46 +00:00
|
|
|
|
|
|
|
|
2018-01-25 15:18:29 +00:00
|
|
|
class TestCombiner(testsuite.TestCombiner):
|
|
|
|
def get_group_key(self, test):
|
|
|
|
"""Combine tests with the same set of flags.
|
|
|
|
Ignore:
|
|
|
|
1. Some special cases where it's not obvious what to pass in the command.
|
|
|
|
2. Tests with flags that can cause failure even inside try-catch wrapper.
|
|
|
|
3. Tests that use async functions. Async functions can be scheduled after
|
|
|
|
exiting from try-catch wrapper and cause failure.
|
|
|
|
"""
|
|
|
|
if (len(test._files_suffix) > 1 or
|
|
|
|
test._env or
|
|
|
|
not test._mjsunit_files or
|
|
|
|
test._source_files):
|
|
|
|
return None
|
|
|
|
|
|
|
|
source_flags = test._get_source_flags()
|
|
|
|
if ('--expose-trigger-failure' in source_flags or
|
|
|
|
'--throws' in source_flags):
|
|
|
|
return None
|
|
|
|
|
|
|
|
source_code = test.get_source()
|
|
|
|
# Maybe we could just update the tests to await all async functions they
|
|
|
|
# call?
|
|
|
|
if 'async' in source_code:
|
|
|
|
return None
|
|
|
|
|
2018-02-01 13:42:01 +00:00
|
|
|
# TODO(machenbach): Remove grouping if combining tests in a flag-independent
|
|
|
|
# way works well.
|
|
|
|
return 1
|
2018-01-25 15:18:29 +00:00
|
|
|
|
|
|
|
def _combined_test_class(self):
|
|
|
|
return CombinedTest
|
|
|
|
|
|
|
|
|
|
|
|
class CombinedTest(testcase.TestCase):
|
|
|
|
"""Behaves like normal mjsunit tests except:
|
|
|
|
1. Expected outcome is always PASS
|
|
|
|
2. Instead of one file there is a try-catch wrapper with all combined tests
|
|
|
|
passed as arguments.
|
|
|
|
"""
|
|
|
|
def __init__(self, name, tests):
|
2018-01-31 09:18:13 +00:00
|
|
|
super(CombinedTest, self).__init__(tests[0].suite, '', name,
|
|
|
|
tests[0]._test_config)
|
2018-01-25 15:18:29 +00:00
|
|
|
self._tests = tests
|
|
|
|
|
|
|
|
def _prepare_outcomes(self, force_update=True):
|
2018-01-26 07:58:28 +00:00
|
|
|
self._statusfile_outcomes = outproc.OUTCOMES_PASS_OR_TIMEOUT
|
|
|
|
self.expected_outcomes = outproc.OUTCOMES_PASS_OR_TIMEOUT
|
2018-01-25 15:18:29 +00:00
|
|
|
|
2018-01-31 12:01:49 +00:00
|
|
|
def _get_shell_with_flags(self):
|
2018-01-25 15:18:29 +00:00
|
|
|
"""In addition to standard set of shell flags it appends:
|
|
|
|
--disable-abortjs: %AbortJS can abort the test even inside
|
|
|
|
trycatch-wrapper, so we disable it.
|
|
|
|
--quiet-load: suppress any stdout from load() function used by
|
|
|
|
trycatch-wrapper.
|
|
|
|
"""
|
|
|
|
shell = 'd8'
|
|
|
|
shell_flags = ['--test', '--disable-abortjs', '--quiet-load']
|
|
|
|
return shell, shell_flags
|
|
|
|
|
2018-01-31 12:01:49 +00:00
|
|
|
def _get_cmd_params(self):
|
2018-01-25 15:18:29 +00:00
|
|
|
return (
|
2018-01-31 12:01:49 +00:00
|
|
|
super(CombinedTest, self)._get_cmd_params() +
|
2018-01-25 15:18:29 +00:00
|
|
|
self._tests[0]._mjsunit_files +
|
|
|
|
['tools/testrunner/trycatch_loader.js', '--'] +
|
|
|
|
[t._files_suffix[0] for t in self._tests]
|
|
|
|
)
|
|
|
|
|
2018-02-01 13:42:01 +00:00
|
|
|
def _merge_flags(self, flags):
|
|
|
|
"""Merges flags from a list of flags.
|
|
|
|
|
|
|
|
Flag values not starting with '-' are merged with the preceeding flag,
|
|
|
|
e.g. --foo 1 will become --foo=1. All other flags remain the same.
|
|
|
|
|
|
|
|
Returns: A generator of flags.
|
|
|
|
"""
|
|
|
|
if not flags:
|
|
|
|
return
|
|
|
|
# Iterate over flag pairs. ['-'] is a sentinel value for the last iteration.
|
|
|
|
for flag1, flag2 in itertools.izip(flags, flags[1:] + ['-']):
|
|
|
|
if not flag2.startswith('-'):
|
|
|
|
assert '=' not in flag1
|
|
|
|
yield flag1 + '=' + flag2
|
|
|
|
elif flag1.startswith('-'):
|
|
|
|
yield flag1
|
|
|
|
|
|
|
|
|
|
|
|
def _get_combined_flags(self, flags_gen):
|
|
|
|
"""Combines all flags - dedupes, keeps order and filters some flags.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
flags_gen: Generator for flag lists.
|
|
|
|
Returns: A list of flags.
|
|
|
|
"""
|
|
|
|
merged_flags = self._merge_flags(list(itertools.chain(*flags_gen)))
|
|
|
|
unique_flags = OrderedDict((flag, True) for flag in merged_flags).keys()
|
|
|
|
return [
|
|
|
|
flag for flag in unique_flags
|
|
|
|
if flag not in COMBINE_TESTS_FLAGS_BLACKLIST
|
|
|
|
]
|
|
|
|
|
2018-01-25 15:18:29 +00:00
|
|
|
def _get_source_flags(self):
|
2018-02-01 13:42:01 +00:00
|
|
|
# Combine flags from all source files.
|
|
|
|
return self._get_combined_flags(
|
|
|
|
test._get_source_flags() for test in self._tests)
|
2018-01-25 15:18:29 +00:00
|
|
|
|
|
|
|
def _get_statusfile_flags(self):
|
2018-02-01 13:42:01 +00:00
|
|
|
# Combine flags from all status file entries.
|
|
|
|
return self._get_combined_flags(
|
|
|
|
test._get_statusfile_flags() for test in self._tests)
|
2018-01-25 15:18:29 +00:00
|
|
|
|
|
|
|
|
2018-01-29 15:51:03 +00:00
|
|
|
class SuppressedTestCase(TestCase):
|
|
|
|
"""The same as a standard mjsunit test case with all asserts as no-ops."""
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
super(SuppressedTestCase, self).__init__(*args, **kwargs)
|
|
|
|
self._mjsunit_files.append(
|
|
|
|
os.path.join(self.suite.root, "mjsunit_suppressions.js"))
|
|
|
|
|
|
|
|
def _prepare_outcomes(self, *args, **kwargs):
|
|
|
|
super(SuppressedTestCase, self)._prepare_outcomes(*args, **kwargs)
|
|
|
|
# Skip tests expected to fail. We suppress all asserts anyways, but some
|
|
|
|
# tests are expected to fail with type errors or even dchecks, and we
|
|
|
|
# can't differentiate that.
|
2018-01-29 20:50:11 +00:00
|
|
|
if statusfile.FAIL in self._statusfile_outcomes:
|
|
|
|
self._statusfile_outcomes = [statusfile.SKIP]
|
|
|
|
else:
|
|
|
|
self.expected_outcomes = self.expected_outcomes + [statusfile.TIMEOUT]
|
2018-01-29 15:51:03 +00:00
|
|
|
|
|
|
|
def _get_extra_flags(self, *args, **kwargs):
|
|
|
|
return (
|
|
|
|
super(SuppressedTestCase, self)._get_extra_flags(*args, **kwargs) +
|
|
|
|
['--disable-abortjs']
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2018-01-31 09:18:13 +00:00
|
|
|
def GetSuite(*args, **kwargs):
|
|
|
|
return TestSuite(*args, **kwargs)
|