| OLD | NEW |
| 1 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved. | 1 # Copyright (c) 2010 The Chromium OS 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 AUTHOR = "Chrome OS Team" | 5 AUTHOR = "Chrome OS Team" |
| 6 NAME = "BVT" | 6 NAME = "BVT" |
| 7 TIME = "SHORT" | 7 TIME = "SHORT" |
| 8 TEST_CATEGORY = "Functional" | 8 TEST_CATEGORY = "Functional" |
| 9 TEST_CLASS = "suite" | 9 TEST_CLASS = "suite" |
| 10 TEST_TYPE = "server" | 10 TEST_TYPE = "server" |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 'login_AuthenticationTests', | 31 'login_AuthenticationTests', |
| 32 'login_PamModuleLoadTest', | 32 'login_PamModuleLoadTest', |
| 33 'hardware_MemoryTotalSize', | 33 'hardware_MemoryTotalSize', |
| 34 'power_Resume', | 34 'power_Resume', |
| 35 'platform_Shutdown', | 35 'platform_Shutdown', |
| 36 'network_WiFiCaps', | 36 'network_WiFiCaps', |
| 37 'platform_NoOpenFilesAtShutdown', | 37 'platform_NoOpenFilesAtShutdown', |
| 38 'platform_UnmountCleanlyAtShutdown', | 38 'platform_UnmountCleanlyAtShutdown', |
| 39 'hardware_DiskSize', | 39 'hardware_DiskSize', |
| 40 'hardware_SsdDetection', | 40 'hardware_SsdDetection', |
| 41 'platform_AccurateTime', | 41 'platform_AccurateTime', |
| 42 'desktopui_DoLogin', | |
| 43 'desktopui_ChromeFirstRender', | 42 'desktopui_ChromeFirstRender', |
| 44 'platform_KernelVersion', | 43 'platform_KernelVersion', |
| 45 'power_Status', | 44 'power_Status', |
| 46 'build_RootFilesystemSize', | 45 'build_RootFilesystemSize', |
| 47 ] | 46 ] |
| 48 | 47 |
| 48 # Run login tests, local first, then remote login |
| 49 job.run_test('desktopui_DoLogin', script='backdoor_creds.json', tag='local') |
| 50 job.run_test('desktopui_DoLogin', script='autox_script.json', tag='remote') |
| 51 |
| 49 for test in TESTS: | 52 for test in TESTS: |
| 50 client_at.run_test(test) | 53 client_at.run_test(test) |
| 51 | 54 |
| 52 # Run jobs with specific parameters | 55 # Run jobs with specific parameters |
| 53 client_at.run_test('network_DisableInterface', | 56 client_at.run_test('network_DisableInterface', |
| 54 iface_name='eth0', tag='eth0') | 57 iface_name='eth0', tag='eth0') |
| 55 client_at.run_test('network_DisableInterface', | 58 client_at.run_test('network_DisableInterface', |
| 56 iface_name='wlan0', tag='wlan0') | 59 iface_name='wlan0', tag='wlan0') |
| 57 # TODO(petkov): If Bluetooth is not available on the platform, this test will | 60 # TODO(petkov): If Bluetooth is not available on the platform, this test will |
| 58 # fail. Fix this once we have a way to run platform-dependent tests. | 61 # fail. Fix this once we have a way to run platform-dependent tests. |
| 59 client_at.run_test('network_DisableInterface', | 62 client_at.run_test('network_DisableInterface', |
| 60 iface_name='hci0', tag='hci0') | 63 iface_name='hci0', tag='hci0') |
| 61 client_at.run_test('hardware_MemoryThroughput', num_iteration=1, test_list='18') | 64 client_at.run_test('hardware_MemoryThroughput', num_iteration=1, test_list='18') |
| 62 client_at.run_test('hardware_SAT', seconds=20) | 65 client_at.run_test('hardware_SAT', seconds=20) |
| OLD | NEW |