| 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 | 9 |
| 10 KITCHEN_TEST_SPEC = { | 10 KITCHEN_TEST_SPEC = { |
| (...skipping 1958 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1969 'test_generators': [ | 1969 'test_generators': [ |
| 1970 steps.generate_gtest, | 1970 steps.generate_gtest, |
| 1971 steps.generate_script, | 1971 steps.generate_script, |
| 1972 steps.generate_isolated_script, | 1972 steps.generate_isolated_script, |
| 1973 ], | 1973 ], |
| 1974 'testing': { | 1974 'testing': { |
| 1975 'platform': 'linux', | 1975 'platform': 'linux', |
| 1976 }, | 1976 }, |
| 1977 }, | 1977 }, |
| 1978 | 1978 |
| 1979 'Android Tests (amp split)': { | |
| 1980 'chromium_config': 'android', | |
| 1981 'gclient_config': 'chromium', | |
| 1982 'gclient_apply_config': ['android'], | |
| 1983 'amp_config': 'commit_queue_pool', | |
| 1984 'chromium_config_kwargs': { | |
| 1985 'BUILD_CONFIG': 'Release', | |
| 1986 'TARGET_BITS': 32, | |
| 1987 'TARGET_PLATFORM': 'android', | |
| 1988 }, | |
| 1989 'bot_type': 'tester', | |
| 1990 'parent_buildername': 'Android Builder (dbg)', | |
| 1991 'android_config': 'main_builder', | |
| 1992 'root_devices': True, | |
| 1993 'enable_swarming': False, | |
| 1994 'tests': [ | |
| 1995 steps.AndroidInstrumentationTest('AndroidWebViewTest'), | |
| 1996 steps.AndroidInstrumentationTest('ContentShellTest'), | |
| 1997 steps.AndroidInstrumentationTest('ChromePublicTest'), | |
| 1998 steps.AndroidInstrumentationTest('ChromeSyncShellTest'), | |
| 1999 steps.AMPGTestTest('android_webview_unittests', | |
| 2000 device_name=['Nexus 5'], device_os=['4.4.2']), | |
| 2001 steps.AMPGTestTest('base_unittests', | |
| 2002 device_name=['Nexus 5'], device_os=['4.4.2'], | |
| 2003 android_isolate_path='base/base_unittests.isolate'), | |
| 2004 steps.GTestTest( | |
| 2005 'breakpad_unittests', | |
| 2006 override_compile_targets=['breakpad_unittests_deps']), | |
| 2007 steps.GTestTest('cc_unittests'), | |
| 2008 steps.AMPGTestTest('components_unittests', | |
| 2009 device_name=['Nexus 5'], device_os=['4.4.2'], | |
| 2010 android_isolate_path='components/components_unittests.isolate'), | |
| 2011 steps.GTestTest('content_browsertests'), | |
| 2012 steps.GTestTest('content_unittests'), | |
| 2013 steps.AMPGTestTest('events_unittests', | |
| 2014 device_name=['Nexus 5'], device_os=['4.4.2']), | |
| 2015 steps.AMPGTestTest('gl_tests', | |
| 2016 device_name=['Nexus 5'], device_os=['4.4.2']), | |
| 2017 steps.GTestTest('gpu_unittests'), | |
| 2018 steps.AMPGTestTest('ipc_tests', device_name=['Nexus 5'], | |
| 2019 device_os=['4.4.2']), | |
| 2020 steps.GTestTest('media_unittests'), | |
| 2021 steps.GTestTest('net_unittests', | |
| 2022 android_isolate_path='net/net_unittests.isolate', | |
| 2023 android_shard_timeout=300), | |
| 2024 steps.GTestTest( | |
| 2025 'sandbox_linux_unittests', | |
| 2026 override_compile_targets=['sandbox_linux_unittests_deps']), | |
| 2027 steps.AMPGTestTest('sql_unittests', | |
| 2028 device_name=['Nexus 5'], device_os=['4.4.2'], | |
| 2029 android_isolate_path='sql/sql_unittests.isolate'), | |
| 2030 steps.AMPGTestTest('sync_unit_tests', | |
| 2031 device_name=['Nexus 5'], device_os=['4.4.2'], | |
| 2032 android_isolate_path='sync/sync_unit_tests.isolate'), | |
| 2033 steps.AMPGTestTest('ui_android_unittests', | |
| 2034 device_name=['Nexus 5'], device_os=['4.4.2']), | |
| 2035 steps.GTestTest('ui_base_unittests'), | |
| 2036 steps.AMPGTestTest('ui_touch_selection_unittests', | |
| 2037 device_name=['Nexus 5'], device_os=['4.4.2']), | |
| 2038 steps.GTestTest('unit_tests'), | |
| 2039 steps.AndroidJunitTest('junit_unit_tests'), | |
| 2040 steps.AndroidJunitTest('chrome_junit_tests'), | |
| 2041 steps.AndroidJunitTest('content_junit_tests'), | |
| 2042 ], | |
| 2043 'test_generators': [ | |
| 2044 steps.generate_gtest, | |
| 2045 steps.generate_script, | |
| 2046 steps.generate_isolated_script, | |
| 2047 ], | |
| 2048 'testing': { | |
| 2049 'platform': 'linux', | |
| 2050 }, | |
| 2051 }, | |
| 2052 | |
| 2053 'Android Tests (amp instrumentation test split)': { | |
| 2054 'chromium_config': 'android', | |
| 2055 'gclient_config': 'chromium', | |
| 2056 'gclient_apply_config': ['android'], | |
| 2057 'amp_config': 'main_pool', | |
| 2058 'chromium_config_kwargs': { | |
| 2059 'BUILD_CONFIG': 'Release', | |
| 2060 'TARGET_BITS': 32, | |
| 2061 'TARGET_PLATFORM': 'android', | |
| 2062 }, | |
| 2063 'bot_type': 'tester', | |
| 2064 'parent_buildername': 'Android Builder (dbg)', | |
| 2065 'android_config': 'main_builder', | |
| 2066 'root_devices': True, | |
| 2067 'enable_swarming': False, | |
| 2068 'tests': [ | |
| 2069 steps.AMPInstrumentationTest( | |
| 2070 test_apk='AndroidWebViewTest', | |
| 2071 apk_under_test='AndroidWebView', | |
| 2072 android_isolate_path= | |
| 2073 'android_webview/android_webview_test_data.isolate', | |
| 2074 compile_target='android_webview_test_apk', | |
| 2075 device_name=['Nexus 5'], device_os=['4.4.2']), | |
| 2076 ], | |
| 2077 'test_generators': [ | |
| 2078 steps.generate_gtest, | |
| 2079 steps.generate_script, | |
| 2080 steps.generate_isolated_script, | |
| 2081 ], | |
| 2082 'testing': { | |
| 2083 'platform': 'linux', | |
| 2084 }, | |
| 2085 }, | |
| 2086 | |
| 2087 'Android Remoting Tests': { | 1979 'Android Remoting Tests': { |
| 2088 'chromium_config': 'android', | 1980 'chromium_config': 'android', |
| 2089 'gclient_config': 'chromium', | 1981 'gclient_config': 'chromium', |
| 2090 'gclient_apply_config': ['android'], | 1982 'gclient_apply_config': ['android'], |
| 2091 'chromium_config_kwargs': { | 1983 'chromium_config_kwargs': { |
| 2092 'BUILD_CONFIG': 'Release', | 1984 'BUILD_CONFIG': 'Release', |
| 2093 'TARGET_BITS': 32, | 1985 'TARGET_BITS': 32, |
| 2094 'TARGET_PLATFORM': 'android', | 1986 'TARGET_PLATFORM': 'android', |
| 2095 }, | 1987 }, |
| 2096 'compile_targets': [ | 1988 'compile_targets': [ |
| (...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2314 steps.generate_gtest, | 2206 steps.generate_gtest, |
| 2315 steps.generate_script, | 2207 steps.generate_script, |
| 2316 steps.generate_isolated_script, | 2208 steps.generate_isolated_script, |
| 2317 ], | 2209 ], |
| 2318 'testing': { 'platform': 'win', }, | 2210 'testing': { 'platform': 'win', }, |
| 2319 'use_isolate': True, | 2211 'use_isolate': True, |
| 2320 'enable_swarming': True, | 2212 'enable_swarming': True, |
| 2321 }, | 2213 }, |
| 2322 }, | 2214 }, |
| 2323 } | 2215 } |
| OLD | NEW |