36 lines
1.2 KiB
Python
36 lines
1.2 KiB
Python
# Copyright 2019 The Chromium Authors
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
import os
|
|
import sys
|
|
|
|
# Add src/testing/ into sys.path for importing common without pylint errors.
|
|
sys.path.append(
|
|
os.path.abspath(os.path.join(os.path.dirname(__file__), os.path.pardir)))
|
|
from scripts import common
|
|
|
|
|
|
class GpuIntegrationTestAdapater(common.BaseIsolatedScriptArgsAdapter):
|
|
|
|
def generate_test_output_args(self, output):
|
|
return ['--write-full-results-to', output]
|
|
|
|
def generate_test_also_run_disabled_tests_args(self):
|
|
return ['--all']
|
|
|
|
def generate_test_filter_args(self, test_filter_str):
|
|
# isolated_script_test_filter comes in like:
|
|
# WebglExtension_WEBGL_depth_texture::conformance/textures/misc/copytexsubimage2d-subrects.html # pylint: disable=line-too-long
|
|
return ['--test-filter=%s' % test_filter_str]
|
|
|
|
def generate_sharding_args(self, total_shards, shard_index):
|
|
return ['--total-shards=%d' % total_shards,
|
|
'--shard-index=%d' % shard_index]
|
|
|
|
def generate_test_launcher_retry_limit_args(self, retry_limit):
|
|
return ['--retry-limit=%d' % retry_limit]
|
|
|
|
def generate_test_repeat_args(self, repeat_count):
|
|
return ['--repeat=%d' % repeat_count]
|