2017-10-13 08:13:39 +00:00
|
|
|
# Copyright 2017 the V8 project authors. All rights reserved.
|
|
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
|
|
# found in the LICENSE file.
|
|
|
|
|
2022-08-09 15:46:28 +00:00
|
|
|
from collections import OrderedDict, namedtuple
|
2019-02-18 14:01:33 +00:00
|
|
|
from functools import reduce
|
2022-08-09 15:46:28 +00:00
|
|
|
from os.path import dirname as up
|
2017-10-13 08:13:39 +00:00
|
|
|
|
2017-10-16 14:24:43 +00:00
|
|
|
import json
|
2022-09-06 15:19:54 +00:00
|
|
|
import logging
|
2018-02-02 22:46:27 +00:00
|
|
|
import multiprocessing
|
2017-10-16 14:24:43 +00:00
|
|
|
import optparse
|
2017-10-13 08:13:39 +00:00
|
|
|
import os
|
2018-01-31 12:01:49 +00:00
|
|
|
import shlex
|
2017-10-13 08:13:39 +00:00
|
|
|
import sys
|
2019-02-01 09:18:33 +00:00
|
|
|
import traceback
|
2017-10-13 08:13:39 +00:00
|
|
|
|
2022-08-09 15:46:28 +00:00
|
|
|
from testrunner.build_config import BuildConfig
|
2018-01-31 09:18:13 +00:00
|
|
|
from testrunner.local import testsuite
|
|
|
|
from testrunner.local import utils
|
2022-08-09 15:46:28 +00:00
|
|
|
from testrunner.local.context import os_context
|
2018-01-31 09:18:13 +00:00
|
|
|
from testrunner.test_config import TestConfig
|
2020-07-14 12:10:38 +00:00
|
|
|
from testrunner.testproc import util
|
2022-07-21 12:52:19 +00:00
|
|
|
from testrunner.testproc.indicators import PROGRESS_INDICATORS
|
|
|
|
from testrunner.testproc.sigproc import SignalProc
|
2022-06-12 12:05:22 +00:00
|
|
|
from testrunner.utils.augmented_options import AugmentedOptions
|
2018-01-17 13:52:47 +00:00
|
|
|
|
2017-10-16 14:24:43 +00:00
|
|
|
|
|
|
|
DEFAULT_OUT_GN = 'out.gn'
|
|
|
|
|
|
|
|
# Map of test name synonyms to lists of test suites. Should be ordered by
|
|
|
|
# expected runtimes (suites with slow test cases first). These groups are
|
|
|
|
# invoked in separate steps on the bots.
|
2019-08-26 12:28:06 +00:00
|
|
|
# The mapping from names used here to GN targets (which must stay in sync)
|
|
|
|
# is defined in infra/mb/gn_isolate_map.pyl.
|
2017-10-16 14:24:43 +00:00
|
|
|
TEST_MAP = {
|
2019-08-26 12:28:06 +00:00
|
|
|
# This needs to stay in sync with group("v8_bot_default") in test/BUILD.gn.
|
2017-10-16 14:24:43 +00:00
|
|
|
"bot_default": [
|
|
|
|
"debugger",
|
|
|
|
"mjsunit",
|
|
|
|
"cctest",
|
|
|
|
"wasm-spec-tests",
|
|
|
|
"inspector",
|
|
|
|
"webkit",
|
|
|
|
"mkgrokdump",
|
2018-10-17 19:00:16 +00:00
|
|
|
"wasm-js",
|
2017-10-16 14:24:43 +00:00
|
|
|
"fuzzer",
|
|
|
|
"message",
|
|
|
|
"intl",
|
|
|
|
"unittests",
|
2019-08-26 12:28:06 +00:00
|
|
|
"wasm-api-tests",
|
2017-10-16 14:24:43 +00:00
|
|
|
],
|
2019-08-26 12:28:06 +00:00
|
|
|
# This needs to stay in sync with group("v8_default") in test/BUILD.gn.
|
2017-10-16 14:24:43 +00:00
|
|
|
"default": [
|
|
|
|
"debugger",
|
|
|
|
"mjsunit",
|
|
|
|
"cctest",
|
|
|
|
"wasm-spec-tests",
|
|
|
|
"inspector",
|
|
|
|
"mkgrokdump",
|
2018-10-17 19:00:16 +00:00
|
|
|
"wasm-js",
|
2017-10-16 14:24:43 +00:00
|
|
|
"fuzzer",
|
|
|
|
"message",
|
|
|
|
"intl",
|
|
|
|
"unittests",
|
2019-08-26 12:28:06 +00:00
|
|
|
"wasm-api-tests",
|
2017-10-16 14:24:43 +00:00
|
|
|
],
|
2019-08-26 12:28:06 +00:00
|
|
|
# This needs to stay in sync with group("v8_d8_default") in test/BUILD.gn.
|
2018-01-12 14:21:47 +00:00
|
|
|
"d8_default": [
|
2018-09-06 13:10:50 +00:00
|
|
|
"debugger",
|
2018-01-12 14:21:47 +00:00
|
|
|
"mjsunit",
|
|
|
|
"webkit",
|
2018-09-06 13:10:50 +00:00
|
|
|
"message",
|
|
|
|
"intl",
|
2018-01-12 14:21:47 +00:00
|
|
|
],
|
2019-08-26 12:28:06 +00:00
|
|
|
# This needs to stay in sync with "v8_optimize_for_size" in test/BUILD.gn.
|
2017-10-16 14:24:43 +00:00
|
|
|
"optimize_for_size": [
|
|
|
|
"debugger",
|
|
|
|
"mjsunit",
|
|
|
|
"cctest",
|
|
|
|
"inspector",
|
|
|
|
"webkit",
|
|
|
|
"intl",
|
|
|
|
],
|
|
|
|
"unittests": [
|
|
|
|
"unittests",
|
|
|
|
],
|
|
|
|
}
|
|
|
|
|
2020-10-06 11:40:26 +00:00
|
|
|
ModeConfig = namedtuple(
|
2020-10-07 16:43:41 +00:00
|
|
|
'ModeConfig', 'label flags timeout_scalefactor status_mode')
|
2017-10-26 14:20:26 +00:00
|
|
|
|
2020-02-19 13:52:16 +00:00
|
|
|
RELEASE_FLAGS = ["--nohard-abort"]
|
2020-10-06 11:40:26 +00:00
|
|
|
|
|
|
|
RELEASE_MODE = ModeConfig(
|
|
|
|
label='release',
|
2017-10-26 14:20:26 +00:00
|
|
|
flags=RELEASE_FLAGS,
|
|
|
|
timeout_scalefactor=1,
|
|
|
|
status_mode="release",
|
2020-10-06 11:40:26 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
# Normal trybot release configuration. There, dchecks are always on which
|
|
|
|
# implies debug is set. Hence, the status file needs to assume debug-like
|
|
|
|
# behavior/timeouts.
|
|
|
|
TRY_RELEASE_MODE = ModeConfig(
|
|
|
|
label='release+dchecks',
|
2017-10-26 14:20:26 +00:00
|
|
|
flags=RELEASE_FLAGS,
|
2020-10-06 11:40:26 +00:00
|
|
|
timeout_scalefactor=4,
|
2017-10-26 14:20:26 +00:00
|
|
|
status_mode="debug",
|
2020-10-06 11:40:26 +00:00
|
|
|
)
|
2017-10-26 14:20:26 +00:00
|
|
|
|
2022-09-06 15:19:54 +00:00
|
|
|
# Set up logging. No need to log a date in timestamps as we can get that from
|
|
|
|
# test run start times.
|
|
|
|
logging.basicConfig(
|
|
|
|
format='%(asctime)s %(message)s',
|
|
|
|
datefmt='%H:%M:%S',
|
|
|
|
level=logging.WARNING,
|
|
|
|
)
|
|
|
|
|
2017-10-16 14:24:43 +00:00
|
|
|
class TestRunnerError(Exception):
|
|
|
|
pass
|
|
|
|
|
2017-10-13 08:13:39 +00:00
|
|
|
class BaseTestRunner(object):
|
2017-12-22 15:30:32 +00:00
|
|
|
def __init__(self, basedir=None):
|
2022-06-01 07:46:16 +00:00
|
|
|
self.v8_root = up(up(up(__file__)))
|
|
|
|
self.basedir = basedir or self.v8_root
|
2017-10-16 14:24:43 +00:00
|
|
|
self.outdir = None
|
2017-10-26 14:20:26 +00:00
|
|
|
self.build_config = None
|
|
|
|
self.mode_options = None
|
2018-08-10 17:09:34 +00:00
|
|
|
self.target_os = None
|
2021-08-20 15:06:40 +00:00
|
|
|
self.infra_staging = False
|
2022-06-12 12:05:22 +00:00
|
|
|
self.options = None
|
2017-10-25 09:59:54 +00:00
|
|
|
|
2019-04-11 08:58:47 +00:00
|
|
|
@property
|
|
|
|
def framework_name(self):
|
|
|
|
"""String name of the base-runner subclass, used in test results."""
|
2022-06-12 12:05:22 +00:00
|
|
|
raise NotImplementedError() # pragma: no cover
|
2019-04-11 08:58:47 +00:00
|
|
|
|
2017-12-22 15:30:32 +00:00
|
|
|
def execute(self, sys_args=None):
|
|
|
|
if sys_args is None: # pragma: no cover
|
|
|
|
sys_args = sys.argv[1:]
|
2022-06-12 12:05:22 +00:00
|
|
|
parser = self._create_parser()
|
|
|
|
self.options, args = self._parse_args(parser, sys_args)
|
|
|
|
self.infra_staging = self.options.infra_staging
|
|
|
|
if self.options.swarming:
|
2022-09-06 15:19:54 +00:00
|
|
|
logging.getLogger().setLevel(logging.INFO)
|
|
|
|
|
2022-06-12 12:05:22 +00:00
|
|
|
# Swarming doesn't print how isolated commands are called. Lets make
|
|
|
|
# this less cryptic by printing it ourselves.
|
|
|
|
print(' '.join(sys.argv))
|
|
|
|
|
|
|
|
# TODO(machenbach): Print used Python version until we have switched to
|
|
|
|
# Python3 everywhere.
|
|
|
|
print('Running with:')
|
|
|
|
print(sys.version)
|
|
|
|
|
|
|
|
# Kill stray processes from previous tasks on swarming.
|
|
|
|
util.kill_processes_linux()
|
2017-10-26 14:20:26 +00:00
|
|
|
|
2022-06-12 12:05:22 +00:00
|
|
|
try:
|
|
|
|
self._load_build_config()
|
2017-10-26 14:20:26 +00:00
|
|
|
try:
|
2022-06-12 12:05:22 +00:00
|
|
|
self._process_default_options()
|
|
|
|
self._process_options()
|
2017-10-26 14:20:26 +00:00
|
|
|
except TestRunnerError:
|
|
|
|
parser.print_help()
|
|
|
|
raise
|
|
|
|
|
2018-01-17 10:00:28 +00:00
|
|
|
args = self._parse_test_args(args)
|
2022-06-12 12:05:22 +00:00
|
|
|
|
2022-08-09 15:46:28 +00:00
|
|
|
with os_context(self.target_os, self.options) as ctx:
|
2022-06-12 12:05:22 +00:00
|
|
|
names = self._args_to_suite_names(args)
|
2022-07-18 09:05:55 +00:00
|
|
|
tests = self._load_testsuite_generators(ctx, names)
|
2022-06-12 12:05:22 +00:00
|
|
|
self._setup_env()
|
|
|
|
print(">>> Running tests for %s.%s" % (self.build_config.arch,
|
|
|
|
self.mode_options.label))
|
2022-07-18 09:05:55 +00:00
|
|
|
exit_code = self._do_execute(tests, args, ctx)
|
2022-06-12 12:05:22 +00:00
|
|
|
if exit_code == utils.EXIT_CODE_FAILURES and self.options.json_test_results:
|
|
|
|
print("Force exit code 0 after failures. Json test results file "
|
|
|
|
"generated with failure information.")
|
|
|
|
exit_code = utils.EXIT_CODE_PASS
|
2019-03-01 13:48:50 +00:00
|
|
|
return exit_code
|
2017-10-16 14:24:43 +00:00
|
|
|
except TestRunnerError:
|
2019-02-01 09:18:33 +00:00
|
|
|
traceback.print_exc()
|
2018-02-20 17:23:37 +00:00
|
|
|
return utils.EXIT_CODE_INTERNAL_ERROR
|
2018-01-15 17:49:16 +00:00
|
|
|
except KeyboardInterrupt:
|
2018-02-20 17:23:37 +00:00
|
|
|
return utils.EXIT_CODE_INTERRUPTED
|
2019-02-01 09:18:33 +00:00
|
|
|
except Exception:
|
|
|
|
traceback.print_exc()
|
|
|
|
return utils.EXIT_CODE_INTERNAL_ERROR
|
2022-06-12 12:05:22 +00:00
|
|
|
|
2017-10-16 14:24:43 +00:00
|
|
|
|
2017-10-26 14:20:26 +00:00
|
|
|
def _create_parser(self):
|
2017-10-16 14:24:43 +00:00
|
|
|
parser = optparse.OptionParser()
|
|
|
|
parser.usage = '%prog [options] [tests]'
|
|
|
|
parser.description = """TESTS: %s""" % (TEST_MAP["default"])
|
|
|
|
self._add_parser_default_options(parser)
|
|
|
|
self._add_parser_options(parser)
|
2017-10-26 14:20:26 +00:00
|
|
|
return parser
|
2017-10-16 14:24:43 +00:00
|
|
|
|
|
|
|
def _add_parser_default_options(self, parser):
|
|
|
|
parser.add_option("--gn", help="Scan out.gn for the last built"
|
|
|
|
" configuration",
|
|
|
|
default=False, action="store_true")
|
|
|
|
parser.add_option("--outdir", help="Base directory with compile output",
|
|
|
|
default="out")
|
|
|
|
parser.add_option("--arch",
|
2017-11-02 18:59:38 +00:00
|
|
|
help="The architecture to run tests for")
|
|
|
|
parser.add_option("--shell-dir", help="DEPRECATED! Executables from build "
|
|
|
|
"directory will be used")
|
2018-05-25 13:22:03 +00:00
|
|
|
parser.add_option("--test-root", help="Root directory of the test suites",
|
|
|
|
default=os.path.join(self.basedir, 'test'))
|
2018-01-31 09:18:13 +00:00
|
|
|
parser.add_option("--total-timeout-sec", default=0, type="int",
|
|
|
|
help="How long should fuzzer run")
|
2018-02-02 22:46:27 +00:00
|
|
|
parser.add_option("--swarming", default=False, action="store_true",
|
|
|
|
help="Indicates running test driver on swarming.")
|
2021-08-20 15:06:40 +00:00
|
|
|
parser.add_option('--infra-staging', help='Use new test runner features',
|
|
|
|
dest='infra_staging', default=None,
|
|
|
|
action='store_true')
|
|
|
|
parser.add_option('--no-infra-staging',
|
|
|
|
help='Opt out of new test runner features',
|
|
|
|
dest='infra_staging', default=None,
|
|
|
|
action='store_false')
|
2018-02-02 22:46:27 +00:00
|
|
|
|
|
|
|
parser.add_option("-j", help="The number of parallel tasks to run",
|
|
|
|
default=0, type=int)
|
2019-02-05 17:53:52 +00:00
|
|
|
parser.add_option("-d", "--device",
|
|
|
|
help="The device ID to run Android tests on. If not "
|
|
|
|
"given it will be autodetected.")
|
2018-02-01 14:55:53 +00:00
|
|
|
|
|
|
|
# Shard
|
|
|
|
parser.add_option("--shard-count", default=1, type=int,
|
|
|
|
help="Split tests into this number of shards")
|
|
|
|
parser.add_option("--shard-run", default=1, type=int,
|
|
|
|
help="Run this shard from the split up tests.")
|
2018-01-31 13:56:01 +00:00
|
|
|
|
2018-02-01 12:53:25 +00:00
|
|
|
# Progress
|
|
|
|
parser.add_option("-p", "--progress",
|
2021-09-29 14:45:12 +00:00
|
|
|
choices=list(PROGRESS_INDICATORS.keys()), default="mono",
|
2018-02-01 12:53:25 +00:00
|
|
|
help="The style of progress indicator (verbose, dots, "
|
|
|
|
"color, mono)")
|
|
|
|
parser.add_option("--json-test-results",
|
|
|
|
help="Path to a file for storing json results.")
|
2020-02-19 14:03:21 +00:00
|
|
|
parser.add_option('--slow-tests-cutoff', type="int", default=100,
|
|
|
|
help='Collect N slowest tests')
|
2018-10-02 13:31:32 +00:00
|
|
|
parser.add_option("--exit-after-n-failures", type="int", default=100,
|
|
|
|
help="Exit after the first N failures instead of "
|
|
|
|
"running all tests. Pass 0 to disable this feature.")
|
2019-09-17 10:24:30 +00:00
|
|
|
parser.add_option("--ci-test-completion",
|
|
|
|
help="Path to a file for logging test completion in the "
|
|
|
|
"context of CI progress indicator. Ignored if "
|
|
|
|
"progress indicator is other than 'ci'.")
|
2018-02-01 12:53:25 +00:00
|
|
|
|
|
|
|
# Rerun
|
2018-01-31 13:56:01 +00:00
|
|
|
parser.add_option("--rerun-failures-count", default=0, type=int,
|
|
|
|
help="Number of times to rerun each failing test case. "
|
|
|
|
"Very slow tests will be rerun only once.")
|
|
|
|
parser.add_option("--rerun-failures-max", default=100, type=int,
|
|
|
|
help="Maximum number of failing test cases to rerun")
|
2017-10-16 14:24:43 +00:00
|
|
|
|
2018-02-01 12:53:25 +00:00
|
|
|
# Test config
|
2018-01-31 12:01:49 +00:00
|
|
|
parser.add_option("--command-prefix", default="",
|
|
|
|
help="Prepended to each shell command used to run a test")
|
2020-09-07 12:14:41 +00:00
|
|
|
parser.add_option('--dont-skip-slow-simulator-tests',
|
|
|
|
help='Don\'t skip more slow tests when using a'
|
|
|
|
' simulator.', default=False, action='store_true',
|
|
|
|
dest='dont_skip_simulator_slow_tests')
|
2018-01-31 12:01:49 +00:00
|
|
|
parser.add_option("--extra-flags", action="append", default=[],
|
|
|
|
help="Additional flags to pass to each test command")
|
|
|
|
parser.add_option("--isolates", action="store_true", default=False,
|
|
|
|
help="Whether to test isolates")
|
|
|
|
parser.add_option("--no-harness", "--noharness",
|
|
|
|
default=False, action="store_true",
|
|
|
|
help="Run without test harness of a given suite")
|
2018-02-01 14:55:53 +00:00
|
|
|
parser.add_option("--random-seed", default=0, type=int,
|
|
|
|
help="Default seed for initializing random generator")
|
2018-11-22 07:33:45 +00:00
|
|
|
parser.add_option("--run-skipped", help="Also run skipped tests.",
|
|
|
|
default=False, action="store_true")
|
2018-01-31 12:01:49 +00:00
|
|
|
parser.add_option("-t", "--timeout", default=60, type=int,
|
|
|
|
help="Timeout for single test in seconds")
|
|
|
|
parser.add_option("-v", "--verbose", default=False, action="store_true",
|
|
|
|
help="Verbose output")
|
2020-03-03 18:04:10 +00:00
|
|
|
parser.add_option('--regenerate-expected-files', default=False, action='store_true',
|
|
|
|
help='Regenerate expected files')
|
2018-01-31 12:01:49 +00:00
|
|
|
|
2018-01-19 13:04:34 +00:00
|
|
|
# TODO(machenbach): Temporary options for rolling out new test runner
|
|
|
|
# features.
|
2018-01-22 14:40:51 +00:00
|
|
|
parser.add_option("--mastername", default='',
|
|
|
|
help="Mastername property from infrastructure. Not "
|
|
|
|
"setting this option indicates manual usage.")
|
|
|
|
parser.add_option("--buildername", default='',
|
|
|
|
help="Buildername property from infrastructure. Not "
|
|
|
|
"setting this option indicates manual usage.")
|
2018-01-19 13:04:34 +00:00
|
|
|
|
2017-10-16 14:24:43 +00:00
|
|
|
def _add_parser_options(self, parser):
|
2022-06-12 12:05:22 +00:00
|
|
|
pass # pragma: no cover
|
2017-10-16 14:24:43 +00:00
|
|
|
|
2017-12-22 15:30:32 +00:00
|
|
|
def _parse_args(self, parser, sys_args):
|
|
|
|
options, args = parser.parse_args(sys_args)
|
2017-10-24 11:24:37 +00:00
|
|
|
|
2020-10-06 11:40:26 +00:00
|
|
|
if options.arch and ',' in options.arch: # pragma: no cover
|
|
|
|
print('Multiple architectures are deprecated')
|
2017-10-26 14:20:26 +00:00
|
|
|
raise TestRunnerError()
|
2017-10-25 09:59:54 +00:00
|
|
|
|
2022-06-12 12:05:22 +00:00
|
|
|
return AugmentedOptions.augment(options), args
|
2017-10-25 09:59:54 +00:00
|
|
|
|
2022-06-12 12:05:22 +00:00
|
|
|
def _load_build_config(self):
|
|
|
|
for outdir in self._possible_outdirs():
|
2017-10-26 14:20:26 +00:00
|
|
|
try:
|
2022-06-12 12:05:22 +00:00
|
|
|
self.build_config = self._do_load_build_config(outdir)
|
2020-09-30 12:07:31 +00:00
|
|
|
|
|
|
|
# In auto-detect mode the outdir is always where we found the build config.
|
|
|
|
# This ensures that we'll also take the build products from there.
|
|
|
|
self.outdir = outdir
|
|
|
|
break
|
2017-10-26 14:20:26 +00:00
|
|
|
except TestRunnerError:
|
|
|
|
pass
|
2017-10-25 09:59:54 +00:00
|
|
|
|
2017-12-22 15:30:32 +00:00
|
|
|
if not self.build_config: # pragma: no cover
|
2019-02-18 14:01:33 +00:00
|
|
|
print('Failed to load build config')
|
2017-10-26 14:20:26 +00:00
|
|
|
raise TestRunnerError
|
|
|
|
|
2019-02-18 14:01:33 +00:00
|
|
|
print('Build found: %s' % self.outdir)
|
2017-11-07 12:47:41 +00:00
|
|
|
if str(self.build_config):
|
2019-02-18 14:01:33 +00:00
|
|
|
print('>>> Autodetected:')
|
|
|
|
print(self.build_config)
|
2017-11-07 12:47:41 +00:00
|
|
|
|
2018-08-10 17:09:34 +00:00
|
|
|
# Represents the OS where tests are run on. Same as host OS except for
|
|
|
|
# Android, which is determined by build output.
|
|
|
|
if self.build_config.is_android:
|
|
|
|
self.target_os = 'android'
|
|
|
|
else:
|
|
|
|
self.target_os = utils.GuessOS()
|
|
|
|
|
2022-06-12 12:05:22 +00:00
|
|
|
def _do_load_build_config(self, outdir):
|
|
|
|
build_config_path = os.path.join(outdir, "v8_build_config.json")
|
|
|
|
if not os.path.exists(build_config_path):
|
|
|
|
if self.options.verbose:
|
|
|
|
print("Didn't find build config: %s" % build_config_path)
|
|
|
|
raise TestRunnerError()
|
|
|
|
|
|
|
|
with open(build_config_path) as f:
|
|
|
|
try:
|
|
|
|
build_config_json = json.load(f)
|
|
|
|
except Exception: # pragma: no cover
|
|
|
|
print("%s exists but contains invalid json. Is your build up-to-date?"
|
|
|
|
% build_config_path)
|
|
|
|
raise TestRunnerError()
|
|
|
|
|
2022-07-18 09:05:55 +00:00
|
|
|
return BuildConfig(build_config_json, self.options)
|
2022-06-12 12:05:22 +00:00
|
|
|
|
2017-11-07 12:47:41 +00:00
|
|
|
# Returns possible build paths in order:
|
|
|
|
# gn
|
|
|
|
# outdir
|
2020-10-06 11:40:26 +00:00
|
|
|
# outdir on bots
|
2022-06-12 12:05:22 +00:00
|
|
|
def _possible_outdirs(self):
|
2017-11-07 12:47:41 +00:00
|
|
|
def outdirs():
|
2022-06-12 12:05:22 +00:00
|
|
|
if self.options.gn:
|
2017-11-07 12:47:41 +00:00
|
|
|
yield self._get_gn_outdir()
|
|
|
|
return
|
|
|
|
|
2022-06-12 12:05:22 +00:00
|
|
|
yield self.options.outdir
|
2020-09-30 12:12:13 +00:00
|
|
|
|
2022-06-12 12:05:22 +00:00
|
|
|
if os.path.basename(self.options.outdir) != 'build':
|
|
|
|
yield os.path.join(self.options.outdir, 'build')
|
2017-10-26 14:20:26 +00:00
|
|
|
|
2017-11-07 12:47:41 +00:00
|
|
|
for outdir in outdirs():
|
2017-12-22 15:30:32 +00:00
|
|
|
yield os.path.join(self.basedir, outdir)
|
2017-11-07 12:47:41 +00:00
|
|
|
|
2017-10-16 14:24:43 +00:00
|
|
|
def _get_gn_outdir(self):
|
2017-12-22 15:30:32 +00:00
|
|
|
gn_out_dir = os.path.join(self.basedir, DEFAULT_OUT_GN)
|
2017-10-16 14:24:43 +00:00
|
|
|
latest_timestamp = -1
|
|
|
|
latest_config = None
|
|
|
|
for gn_config in os.listdir(gn_out_dir):
|
|
|
|
gn_config_dir = os.path.join(gn_out_dir, gn_config)
|
|
|
|
if not os.path.isdir(gn_config_dir):
|
|
|
|
continue
|
|
|
|
if os.path.getmtime(gn_config_dir) > latest_timestamp:
|
|
|
|
latest_timestamp = os.path.getmtime(gn_config_dir)
|
|
|
|
latest_config = gn_config
|
|
|
|
if latest_config:
|
|
|
|
print(">>> Latest GN build found: %s" % latest_config)
|
|
|
|
return os.path.join(DEFAULT_OUT_GN, latest_config)
|
|
|
|
|
2022-12-21 14:25:11 +00:00
|
|
|
def _custom_debug_mode(self):
|
|
|
|
custom_debug_flags = ["--nohard-abort"]
|
|
|
|
if self.build_config.verify_heap:
|
|
|
|
custom_debug_flags += ["--verify-heap"]
|
|
|
|
if self.build_config.slow_dchecks:
|
|
|
|
custom_debug_flags += ["--enable-slow-asserts"]
|
|
|
|
return ModeConfig(
|
|
|
|
label='debug',
|
|
|
|
flags=custom_debug_flags,
|
|
|
|
timeout_scalefactor=4,
|
|
|
|
status_mode="debug",
|
|
|
|
)
|
|
|
|
|
2022-06-12 12:05:22 +00:00
|
|
|
def _process_default_options(self):
|
2020-10-06 11:40:26 +00:00
|
|
|
if self.build_config.is_debug:
|
2022-12-21 14:25:11 +00:00
|
|
|
self.mode_options = self._custom_debug_mode()
|
2021-07-27 06:41:14 +00:00
|
|
|
elif self.build_config.dcheck_always_on:
|
2020-10-06 11:40:26 +00:00
|
|
|
self.mode_options = TRY_RELEASE_MODE
|
2017-10-26 14:20:26 +00:00
|
|
|
else:
|
2020-10-06 11:40:26 +00:00
|
|
|
self.mode_options = RELEASE_MODE
|
2017-10-26 14:20:26 +00:00
|
|
|
|
2022-06-12 12:05:22 +00:00
|
|
|
if self.options.arch and self.options.arch != self.build_config.arch:
|
2017-10-26 14:20:26 +00:00
|
|
|
print('--arch value (%s) inconsistent with build config (%s).' % (
|
2022-06-12 12:05:22 +00:00
|
|
|
self.options.arch, self.build_config.arch))
|
2017-10-26 14:20:26 +00:00
|
|
|
raise TestRunnerError()
|
|
|
|
|
2022-06-12 12:05:22 +00:00
|
|
|
if self.options.shell_dir: # pragma: no cover
|
2017-11-02 18:59:38 +00:00
|
|
|
print('Warning: --shell-dir is deprecated. Searching for executables in '
|
|
|
|
'build directory (%s) instead.' % self.outdir)
|
2017-10-16 14:24:43 +00:00
|
|
|
|
2022-06-12 12:05:22 +00:00
|
|
|
if self.options.j == 0:
|
2018-08-10 17:09:34 +00:00
|
|
|
if self.build_config.is_android:
|
|
|
|
# Adb isn't happy about multi-processed file pushing.
|
2022-06-12 12:05:22 +00:00
|
|
|
self.options.j = 1
|
2018-08-10 17:09:34 +00:00
|
|
|
else:
|
2022-06-12 12:05:22 +00:00
|
|
|
self.options.j = multiprocessing.cpu_count()
|
2018-02-02 22:46:27 +00:00
|
|
|
|
2022-06-12 12:05:22 +00:00
|
|
|
self.options.command_prefix = shlex.split(self.options.command_prefix)
|
|
|
|
self.options.extra_flags = sum(list(map(shlex.split, self.options.extra_flags)), [])
|
2018-01-31 12:01:49 +00:00
|
|
|
|
2022-06-12 12:05:22 +00:00
|
|
|
def _process_options(self):
|
|
|
|
pass # pragma: no cover
|
2017-10-13 08:13:39 +00:00
|
|
|
|
2017-10-25 11:42:29 +00:00
|
|
|
def _setup_env(self):
|
|
|
|
# Use the v8 root as cwd as some test cases use "load" with relative paths.
|
2017-12-22 15:30:32 +00:00
|
|
|
os.chdir(self.basedir)
|
2017-10-25 11:42:29 +00:00
|
|
|
|
|
|
|
# Many tests assume an English interface.
|
|
|
|
os.environ['LANG'] = 'en_US.UTF-8'
|
|
|
|
|
|
|
|
symbolizer_option = self._get_external_symbolizer_option()
|
|
|
|
|
|
|
|
if self.build_config.asan:
|
2017-11-07 12:27:22 +00:00
|
|
|
asan_options = [
|
|
|
|
symbolizer_option,
|
|
|
|
'allow_user_segv_handler=1',
|
|
|
|
'allocator_may_return_null=1',
|
|
|
|
]
|
2017-10-25 11:42:29 +00:00
|
|
|
if not utils.GuessOS() in ['macos', 'windows']:
|
|
|
|
# LSAN is not available on mac and windows.
|
|
|
|
asan_options.append('detect_leaks=1')
|
2017-11-07 12:27:22 +00:00
|
|
|
else:
|
|
|
|
asan_options.append('detect_leaks=0')
|
2019-05-31 11:13:59 +00:00
|
|
|
if utils.GuessOS() == 'windows':
|
|
|
|
# https://crbug.com/967663
|
|
|
|
asan_options.append('detect_stack_use_after_return=0')
|
2017-10-25 11:42:29 +00:00
|
|
|
os.environ['ASAN_OPTIONS'] = ":".join(asan_options)
|
|
|
|
|
|
|
|
if self.build_config.cfi_vptr:
|
|
|
|
os.environ['UBSAN_OPTIONS'] = ":".join([
|
|
|
|
'print_stacktrace=1',
|
|
|
|
'print_summary=1',
|
|
|
|
'symbolize=1',
|
|
|
|
symbolizer_option,
|
|
|
|
])
|
|
|
|
|
|
|
|
if self.build_config.ubsan_vptr:
|
|
|
|
os.environ['UBSAN_OPTIONS'] = ":".join([
|
|
|
|
'print_stacktrace=1',
|
|
|
|
symbolizer_option,
|
|
|
|
])
|
|
|
|
|
|
|
|
if self.build_config.msan:
|
|
|
|
os.environ['MSAN_OPTIONS'] = symbolizer_option
|
|
|
|
|
|
|
|
if self.build_config.tsan:
|
|
|
|
suppressions_file = os.path.join(
|
2017-12-22 15:30:32 +00:00
|
|
|
self.basedir,
|
2017-10-25 11:42:29 +00:00
|
|
|
'tools',
|
|
|
|
'sanitizers',
|
|
|
|
'tsan_suppressions.txt')
|
|
|
|
os.environ['TSAN_OPTIONS'] = " ".join([
|
|
|
|
symbolizer_option,
|
|
|
|
'suppressions=%s' % suppressions_file,
|
|
|
|
'exit_code=0',
|
|
|
|
'report_thread_leaks=0',
|
|
|
|
'history_size=7',
|
|
|
|
'report_destroy_locked=0',
|
|
|
|
])
|
|
|
|
|
|
|
|
def _get_external_symbolizer_option(self):
|
|
|
|
external_symbolizer_path = os.path.join(
|
2017-12-22 15:30:32 +00:00
|
|
|
self.basedir,
|
2017-10-25 11:42:29 +00:00
|
|
|
'third_party',
|
|
|
|
'llvm-build',
|
|
|
|
'Release+Asserts',
|
|
|
|
'bin',
|
|
|
|
'llvm-symbolizer',
|
|
|
|
)
|
|
|
|
|
|
|
|
if utils.IsWindows():
|
|
|
|
# Quote, because sanitizers might confuse colon as option separator.
|
|
|
|
external_symbolizer_path = '"%s.exe"' % external_symbolizer_path
|
|
|
|
|
|
|
|
return 'external_symbolizer_path=%s' % external_symbolizer_path
|
|
|
|
|
2018-01-17 10:00:28 +00:00
|
|
|
def _parse_test_args(self, args):
|
2018-01-15 17:49:16 +00:00
|
|
|
if not args:
|
|
|
|
args = self._get_default_suite_names()
|
|
|
|
|
|
|
|
# Expand arguments with grouped tests. The args should reflect the list
|
|
|
|
# of suites as otherwise filters would break.
|
|
|
|
def expand_test_group(name):
|
|
|
|
return TEST_MAP.get(name, [name])
|
|
|
|
|
2021-09-29 14:45:12 +00:00
|
|
|
return reduce(list.__add__, list(map(expand_test_group, args)), [])
|
2018-01-15 17:49:16 +00:00
|
|
|
|
2022-06-12 12:05:22 +00:00
|
|
|
def _args_to_suite_names(self, args):
|
2018-01-17 10:00:28 +00:00
|
|
|
# Use default tests if no test configuration was provided at the cmd line.
|
2022-06-12 12:05:22 +00:00
|
|
|
all_names = set(utils.GetSuitePaths(self.options.test_root))
|
2018-01-15 17:49:16 +00:00
|
|
|
args_names = OrderedDict([(arg.split('/')[0], None) for arg in args]) # set
|
|
|
|
return [name for name in args_names if name in all_names]
|
|
|
|
|
|
|
|
def _get_default_suite_names(self):
|
2022-06-12 12:05:22 +00:00
|
|
|
return [] # pragma: no cover
|
2018-01-15 17:49:16 +00:00
|
|
|
|
2022-07-18 09:05:55 +00:00
|
|
|
def _load_testsuite_generators(self, ctx, names):
|
2022-06-12 12:05:22 +00:00
|
|
|
test_config = self._create_test_config()
|
|
|
|
variables = self._get_statusfile_variables()
|
2019-02-12 15:30:16 +00:00
|
|
|
|
|
|
|
# Head generator with no elements
|
|
|
|
test_chain = testsuite.TestGenerator(0, [], [])
|
2019-01-11 11:29:15 +00:00
|
|
|
for name in names:
|
2022-06-12 12:05:22 +00:00
|
|
|
if self.options.verbose:
|
2019-02-18 14:01:33 +00:00
|
|
|
print('>>> Loading test suite: %s' % name)
|
2019-01-11 11:29:15 +00:00
|
|
|
suite = testsuite.TestSuite.Load(
|
2023-01-20 16:22:22 +00:00
|
|
|
ctx, os.path.join(self.options.test_root, name), test_config)
|
2019-01-11 11:29:15 +00:00
|
|
|
|
2022-06-12 12:05:22 +00:00
|
|
|
if self._is_testsuite_supported(suite):
|
2019-02-12 15:30:16 +00:00
|
|
|
tests = suite.load_tests_from_disk(variables)
|
|
|
|
test_chain.merge(tests)
|
2019-01-15 10:43:02 +00:00
|
|
|
|
2019-02-12 15:30:16 +00:00
|
|
|
return test_chain
|
2019-01-11 11:29:15 +00:00
|
|
|
|
2022-06-12 12:05:22 +00:00
|
|
|
def _is_testsuite_supported(self, suite):
|
2019-01-11 11:29:15 +00:00
|
|
|
"""A predicate that can be overridden to filter out unsupported TestSuite
|
|
|
|
instances (see NumFuzzer for usage)."""
|
|
|
|
return True
|
2018-02-01 14:55:53 +00:00
|
|
|
|
2022-06-12 12:05:22 +00:00
|
|
|
def _get_statusfile_variables(self):
|
2018-02-01 14:55:53 +00:00
|
|
|
return {
|
2022-07-18 09:05:55 +00:00
|
|
|
"arch":
|
|
|
|
self.build_config.arch,
|
|
|
|
"asan":
|
|
|
|
self.build_config.asan,
|
|
|
|
"byteorder":
|
|
|
|
sys.byteorder,
|
|
|
|
"cfi_vptr":
|
|
|
|
self.build_config.cfi_vptr,
|
2023-01-04 13:25:03 +00:00
|
|
|
"code_comments":
|
|
|
|
self.build_config.code_comments,
|
2022-09-29 18:08:17 +00:00
|
|
|
"component_build":
|
|
|
|
self.build_config.component_build,
|
2022-10-21 12:07:52 +00:00
|
|
|
"conservative_stack_scanning":
|
|
|
|
self.build_config.conservative_stack_scanning,
|
2022-07-18 09:05:55 +00:00
|
|
|
"control_flow_integrity":
|
|
|
|
self.build_config.control_flow_integrity,
|
|
|
|
"concurrent_marking":
|
|
|
|
self.build_config.concurrent_marking,
|
|
|
|
"single_generation":
|
|
|
|
self.build_config.single_generation,
|
|
|
|
"dcheck_always_on":
|
|
|
|
self.build_config.dcheck_always_on,
|
2023-01-04 13:25:03 +00:00
|
|
|
"debug_code":
|
|
|
|
self.build_config.debug_code,
|
2022-07-18 09:05:55 +00:00
|
|
|
"deopt_fuzzer":
|
|
|
|
False,
|
2023-01-04 13:25:03 +00:00
|
|
|
"disassembler":
|
|
|
|
self.build_config.disassembler,
|
2022-07-18 09:05:55 +00:00
|
|
|
"endurance_fuzzer":
|
|
|
|
False,
|
|
|
|
"gc_fuzzer":
|
|
|
|
False,
|
|
|
|
"gc_stress":
|
|
|
|
False,
|
|
|
|
"gcov_coverage":
|
|
|
|
self.build_config.gcov_coverage,
|
2023-01-04 13:25:03 +00:00
|
|
|
"gdbjit":
|
|
|
|
self.build_config.gdbjit,
|
|
|
|
# TODO(jgruber): Note this rename from maglev to has_maglev is required
|
|
|
|
# to avoid a name clash with the "maglev" variant. See also the TODO in
|
|
|
|
# statusfile.py (this really shouldn't be needed).
|
|
|
|
"has_maglev":
|
|
|
|
self.build_config.maglev,
|
[turbofan] Add the v8_enable_turbofan build option
When disabled, Turbofan is fully excluded from the compilation result.
This is expected to reduce V8's contribution to chromium's binary size
by roughly 20%.
If Turbofan is disabled, Maglev and Webassembly must also be disabled
(since both depend on TF).
Note this new configuration (v8_enable_turbofan=false) is not yet
used anywhere - we'll probably enable it for lite_mode bots in an
upcoming CL for test coverage.
Changes in detail:
- Split out all src/compiler files from the main source sets. This
was mostly done already, here we only clean up the few files that
were left.
- Define a new main TF entry point in turbofan.h. `NewCompilationJob`
replaces `Pipeline::NewCompilationJob`.
- When TF is enabled, turbofan-enabled.cc implements the above.
- When disabled, turbofan-disabled stubs out the above with a runtime
FATAL message.
- The build process is modified s.t. mksnapshot always has TF
available since it's needed to generate builtins. When disabled,
TF is removed from other components, in particular it is no longer
included in v8_compiler and transitively in v8_base.
- When disabled, v8_for_testing no longer has v8_initializers
available. These were only needed for test-serialize.cc, which
is now excluded from this build mode.
- When disabled, remove all related cctest/ und unittest/ files from
the build.
Bug: v8:13629
Change-Id: I63ab7632f03d0ee4a787cfc01574b5fdb08fd80b
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/4128529
Reviewed-by: Tobias Tebbi <tebbi@chromium.org>
Auto-Submit: Jakob Linke <jgruber@chromium.org>
Reviewed-by: Michael Achenbach <machenbach@chromium.org>
Reviewed-by: Victor Gomes <victorgomes@chromium.org>
Commit-Queue: Jakob Linke <jgruber@chromium.org>
Cr-Commit-Position: refs/heads/main@{#85210}
2023-01-11 10:08:53 +00:00
|
|
|
"has_turbofan":
|
|
|
|
self.build_config.turbofan,
|
2022-07-18 09:05:55 +00:00
|
|
|
"has_webassembly":
|
|
|
|
self.build_config.webassembly,
|
|
|
|
"isolates":
|
|
|
|
self.options.isolates,
|
|
|
|
"is_clang":
|
|
|
|
self.build_config.is_clang,
|
2023-01-04 13:25:03 +00:00
|
|
|
"is_debug":
|
|
|
|
self.build_config.is_debug,
|
|
|
|
"is_DEBUG_defined":
|
|
|
|
self.build_config.is_DEBUG_defined,
|
2022-07-18 09:05:55 +00:00
|
|
|
"is_full_debug":
|
|
|
|
self.build_config.is_full_debug,
|
2022-09-09 12:35:25 +00:00
|
|
|
"interrupt_fuzzer":
|
|
|
|
False,
|
2022-07-18 09:05:55 +00:00
|
|
|
"mips_arch_variant":
|
|
|
|
self.build_config.mips_arch_variant,
|
|
|
|
"mode":
|
|
|
|
self.mode_options.status_mode,
|
|
|
|
"msan":
|
|
|
|
self.build_config.msan,
|
|
|
|
"no_harness":
|
|
|
|
self.options.no_harness,
|
|
|
|
"no_i18n":
|
|
|
|
self.build_config.no_i18n,
|
|
|
|
"no_simd_hardware":
|
|
|
|
self.build_config.no_simd_hardware,
|
|
|
|
"novfp3":
|
|
|
|
False,
|
|
|
|
"optimize_for_size":
|
|
|
|
"--optimize-for-size" in self.options.extra_flags,
|
|
|
|
"predictable":
|
|
|
|
self.build_config.predictable,
|
|
|
|
"simd_mips":
|
|
|
|
self.build_config.simd_mips,
|
|
|
|
"simulator_run":
|
|
|
|
self.build_config.simulator_run
|
|
|
|
and not self.options.dont_skip_simulator_slow_tests,
|
2023-01-04 13:25:03 +00:00
|
|
|
"slow_dchecks":
|
|
|
|
self.build_config.slow_dchecks,
|
2022-07-18 09:05:55 +00:00
|
|
|
"system":
|
|
|
|
self.target_os,
|
|
|
|
"third_party_heap":
|
|
|
|
self.build_config.third_party_heap,
|
|
|
|
"tsan":
|
|
|
|
self.build_config.tsan,
|
|
|
|
"ubsan_vptr":
|
|
|
|
self.build_config.ubsan_vptr,
|
|
|
|
"verify_csa":
|
|
|
|
self.build_config.verify_csa,
|
2023-01-04 13:25:03 +00:00
|
|
|
"verify_heap":
|
|
|
|
self.build_config.verify_heap,
|
2022-07-18 09:05:55 +00:00
|
|
|
"lite_mode":
|
|
|
|
self.build_config.lite_mode,
|
|
|
|
"pointer_compression":
|
|
|
|
self.build_config.pointer_compression,
|
|
|
|
"pointer_compression_shared_cage":
|
|
|
|
self.build_config.pointer_compression_shared_cage,
|
|
|
|
"no_js_shared_memory":
|
|
|
|
self.build_config.no_js_shared_memory,
|
|
|
|
"sandbox":
|
|
|
|
self.build_config.sandbox,
|
|
|
|
"dict_property_const_tracking":
|
|
|
|
self.build_config.dict_property_const_tracking,
|
2018-02-01 14:55:53 +00:00
|
|
|
}
|
|
|
|
|
2020-02-19 13:52:16 +00:00
|
|
|
def _runner_flags(self):
|
|
|
|
"""Extra default flags specific to the test runner implementation."""
|
2022-06-12 12:05:22 +00:00
|
|
|
return [] # pragma: no cover
|
2020-02-19 13:52:16 +00:00
|
|
|
|
2022-06-12 12:05:22 +00:00
|
|
|
def _create_test_config(self):
|
2023-01-20 16:22:22 +00:00
|
|
|
shard_id, shard_count = self.options.shard_info
|
2022-06-12 12:05:22 +00:00
|
|
|
timeout = self.build_config.timeout_scalefactor(
|
|
|
|
self.options.timeout * self.mode_options.timeout_scalefactor)
|
2018-01-31 12:01:49 +00:00
|
|
|
return TestConfig(
|
2022-06-12 12:05:22 +00:00
|
|
|
command_prefix=self.options.command_prefix,
|
|
|
|
extra_flags=self.options.extra_flags,
|
2023-01-20 16:22:22 +00:00
|
|
|
framework_name=self.framework_name,
|
2022-06-12 12:05:22 +00:00
|
|
|
isolates=self.options.isolates,
|
2020-02-19 13:52:16 +00:00
|
|
|
mode_flags=self.mode_options.flags + self._runner_flags(),
|
2022-06-12 12:05:22 +00:00
|
|
|
no_harness=self.options.no_harness,
|
2018-01-31 12:01:49 +00:00
|
|
|
noi18n=self.build_config.no_i18n,
|
2022-06-12 12:05:22 +00:00
|
|
|
random_seed=self.options.random_seed,
|
|
|
|
run_skipped=self.options.run_skipped,
|
2023-01-20 16:22:22 +00:00
|
|
|
shard_count=shard_count,
|
|
|
|
shard_id=shard_id,
|
2018-01-31 12:01:49 +00:00
|
|
|
shell_dir=self.outdir,
|
|
|
|
timeout=timeout,
|
2022-06-12 12:05:22 +00:00
|
|
|
verbose=self.options.verbose,
|
|
|
|
regenerate_expected_files=self.options.regenerate_expected_files,
|
2018-01-31 12:01:49 +00:00
|
|
|
)
|
|
|
|
|
2017-10-16 14:24:43 +00:00
|
|
|
# TODO(majeski): remove options & args parameters
|
2022-06-12 12:05:22 +00:00
|
|
|
def _do_execute(self, suites, args):
|
|
|
|
raise NotImplementedError() # pragma: no coverage
|
2018-01-17 13:52:47 +00:00
|
|
|
|
2018-02-02 22:46:27 +00:00
|
|
|
def _prepare_procs(self, procs):
|
2019-02-18 14:01:33 +00:00
|
|
|
for i in range(0, len(procs) - 1):
|
2018-02-02 22:46:27 +00:00
|
|
|
procs[i].connect_to(procs[i + 1])
|
2018-02-01 12:53:25 +00:00
|
|
|
|
2018-01-31 10:21:44 +00:00
|
|
|
def _create_signal_proc(self):
|
|
|
|
return SignalProc()
|