���� JFIF �� � ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /home/real/node-v13.0.1/deps/v8/tools/testrunner/ |
# Copyright 2018 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. import random from .utils import random_utils class TestConfig(object): def __init__(self, command_prefix, extra_flags, isolates, mode_flags, no_harness, noi18n, random_seed, run_skipped, shell_dir, timeout, verbose): self.command_prefix = command_prefix self.extra_flags = extra_flags self.isolates = isolates self.mode_flags = mode_flags self.no_harness = no_harness self.noi18n = noi18n # random_seed is always not None. self.random_seed = random_seed or random_utils.random_seed() self.run_skipped = run_skipped self.shell_dir = shell_dir self.timeout = timeout self.verbose = verbose