| 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 19 matching lines...) Expand all Loading... |
| 30 | 30 |
| 31 # | 31 # |
| 32 # Run client tests that do not require specific parameters | 32 # Run client tests that do not require specific parameters |
| 33 # | 33 # |
| 34 | 34 |
| 35 # All client tests whose default parameters are adequate | 35 # All client tests whose default parameters are adequate |
| 36 TESTS = [ | 36 TESTS = [ |
| 37 'build_RootFilesystemSize', | 37 'build_RootFilesystemSize', |
| 38 'desktopui_ScreenSaverUnlock', | 38 'desktopui_ScreenSaverUnlock', |
| 39 'desktopui_ChromeFirstRender', | 39 'desktopui_ChromeFirstRender', |
| 40 'desktopui_WindowManagerFocusNewWindows', |
| 40 'hardware_DiskSize', | 41 'hardware_DiskSize', |
| 41 'hardware_MemoryTotalSize', | 42 'hardware_MemoryTotalSize', |
| 42 'hardware_SsdDetection', | 43 'hardware_SsdDetection', |
| 43 'login_AuthenticationTests', | 44 'login_AuthenticationTests', |
| 44 'login_PamModuleLoadTest', | 45 'login_PamModuleLoadTest', |
| 45 'network_WiFiCaps', | 46 'network_WiFiCaps', |
| 46 'platform_AccurateTime', | 47 'platform_AccurateTime', |
| 47 'platform_DaemonsRespawn', | 48 'platform_DaemonsRespawn', |
| 48 'platform_DiskIterate', | 49 'platform_DiskIterate', |
| 49 'platform_FilePerms', | 50 'platform_FilePerms', |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 | 88 |
| 88 client_at.run_test('network_DisableInterface', | 89 client_at.run_test('network_DisableInterface', |
| 89 iface_name='eth0', tag='eth0') | 90 iface_name='eth0', tag='eth0') |
| 90 client_at.run_test('network_DisableInterface', | 91 client_at.run_test('network_DisableInterface', |
| 91 iface_name='wlan0', tag='wlan0') | 92 iface_name='wlan0', tag='wlan0') |
| 92 # TODO(petkov): If Bluetooth is not available on the platform, this test will | 93 # TODO(petkov): If Bluetooth is not available on the platform, this test will |
| 93 # fail. Fix this once we have a way to run platform-dependent tests. | 94 # fail. Fix this once we have a way to run platform-dependent tests. |
| 94 client_at.run_test('network_DisableInterface', | 95 client_at.run_test('network_DisableInterface', |
| 95 iface_name='hci0', tag='hci0') | 96 iface_name='hci0', tag='hci0') |
| 96 | 97 |
| OLD | NEW |