| # Copyright 2019 The Chromium 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 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 |
| # TODO(skbug.com/12149): Remove --has-test-filter once Gold-based tests no |
| # longer clobber earlier results on retry attempts. |
| return ['--test-filter=%s' % test_filter_str, |
| '--has-test-filter'] |
| |
| 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] |