OLD | NEW |
---|---|
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 from . import steps | 5 from . import steps |
6 | 6 |
7 RESULTS_URL = 'https://chromeperf.appspot.com' | 7 RESULTS_URL = 'https://chromeperf.appspot.com' |
8 | 8 |
9 SPEC = { | 9 SPEC = { |
10 'settings': { | 10 'settings': { |
(...skipping 1937 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1948 'tests': [ | 1948 'tests': [ |
1949 steps.GTestTest('remoting_unittests'), | 1949 steps.GTestTest('remoting_unittests'), |
1950 steps.AndroidInstrumentationTest('ChromotingTest'), | 1950 steps.AndroidInstrumentationTest('ChromotingTest'), |
1951 ], | 1951 ], |
1952 'testing': { | 1952 'testing': { |
1953 'platform': 'linux', | 1953 'platform': 'linux', |
1954 }, | 1954 }, |
1955 }, | 1955 }, |
1956 | 1956 |
1957 | 1957 |
1958 'Chromium Win 10': { | 1958 'Chromium Win 10': { |
Will Harris
2016/03/25 19:39:50
Follow-up: the existing FYI bot seems to be here,
| |
1959 'chromium_config': 'chromium', | 1959 'chromium_config': 'chromium', |
1960 'gclient_config': 'chromium', | 1960 'gclient_config': 'chromium', |
1961 'GYP_DEFINES': { | 1961 'GYP_DEFINES': { |
1962 'dcheck_always_on': '1', | 1962 'dcheck_always_on': '1', |
1963 }, | 1963 }, |
1964 'chromium_config_kwargs': { | 1964 'chromium_config_kwargs': { |
1965 'BUILD_CONFIG': 'Release', | 1965 'BUILD_CONFIG': 'Release', |
1966 'TARGET_BITS': 64, | 1966 'TARGET_BITS': 64, |
1967 }, | 1967 }, |
1968 'test_generators': [ | 1968 'test_generators': [ |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2025 'test_generators': [ | 2025 'test_generators': [ |
2026 steps.generate_gtest, | 2026 steps.generate_gtest, |
2027 steps.generate_script, | 2027 steps.generate_script, |
2028 steps.generate_isolated_script, | 2028 steps.generate_isolated_script, |
2029 steps.generate_instrumentation_test, | 2029 steps.generate_instrumentation_test, |
2030 ], | 2030 ], |
2031 'testing': { | 2031 'testing': { |
2032 'platform': 'linux', | 2032 'platform': 'linux', |
2033 }, | 2033 }, |
2034 }, | 2034 }, |
2035 'Win10 Tests (1)': { | |
2036 'chromium_config': 'chromium', | |
2037 'chromium_apply_config': ['ninja_confirm_noop'], | |
2038 'gclient_config': 'chromium', | |
2039 'chromium_config_kwargs': { | |
2040 'BUILD_CONFIG': 'Release', | |
2041 'TARGET_BITS': 32, | |
2042 }, | |
2043 'bot_type': 'tester', | |
2044 'test_generators': [ | |
2045 steps.generate_gtest, | |
2046 steps.generate_script, | |
2047 steps.generate_isolated_script, | |
2048 ], | |
2049 'tests': [ | |
2050 steps.MiniInstallerTest(), | |
2051 ], | |
2052 'parent_buildername': 'Win Builder', | |
2053 'testing': { | |
2054 'platform': 'win', | |
2055 }, | |
2056 'enable_swarming': True, | |
2057 'swarming_dimensions': { | |
2058 'os': 'Windows-10-SP0', | |
2059 }, | |
2060 }, | |
2061 'Win SyzyAsan (rel)': { | 2035 'Win SyzyAsan (rel)': { |
2062 'chromium_config': 'chromium', | 2036 'chromium_config': 'chromium', |
2063 'chromium_apply_config': ['syzyasan_compile_only', 'shared_library'], | 2037 'chromium_apply_config': ['syzyasan_compile_only', 'shared_library'], |
2064 'gclient_config': 'chromium', | 2038 'gclient_config': 'chromium', |
2065 'chromium_config_kwargs': { | 2039 'chromium_config_kwargs': { |
2066 'BUILD_CONFIG': 'Release', | 2040 'BUILD_CONFIG': 'Release', |
2067 'TARGET_PLATFORM': 'win', | 2041 'TARGET_PLATFORM': 'win', |
2068 'TARGET_BITS': 32, | 2042 'TARGET_BITS': 32, |
2069 }, | 2043 }, |
2070 'compile_targets': [ | 2044 'compile_targets': [ |
2071 'chrome', | 2045 'chrome', |
2072 ], | 2046 ], |
2073 'enable_swarming': True, | 2047 'enable_swarming': True, |
2074 'testing': { | 2048 'testing': { |
2075 'platform': 'win', | 2049 'platform': 'win', |
2076 }, | 2050 }, |
2077 }, | 2051 }, |
2078 }, | 2052 }, |
2079 } | 2053 } |
OLD | NEW |