| 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 17 matching lines...) Expand all Loading... |
| 28 | 28 |
| 29 | 29 |
| 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_ChromeFirstRender', | 39 'desktopui_ChromeFirstRender', |
| 39 'hardware_DiskSize', | 40 'hardware_DiskSize', |
| 40 'hardware_MemoryTotalSize', | 41 'hardware_MemoryTotalSize', |
| 41 'hardware_SsdDetection', | 42 'hardware_SsdDetection', |
| 42 'login_AuthenticationTests', | 43 'login_AuthenticationTests', |
| 43 'login_PamModuleLoadTest', | 44 'login_PamModuleLoadTest', |
| 44 'network_WiFiCaps', | 45 'network_WiFiCaps', |
| 45 'platform_AccurateTime', | 46 'platform_AccurateTime', |
| 46 'platform_DaemonsRespawn', | 47 'platform_DaemonsRespawn', |
| 47 'platform_FilePerms', | 48 'platform_FilePerms', |
| (...skipping 24 matching lines...) Expand all Loading... |
| 72 | 73 |
| 73 client_at.run_test('network_DisableInterface', | 74 client_at.run_test('network_DisableInterface', |
| 74 iface_name='eth0', tag='eth0') | 75 iface_name='eth0', tag='eth0') |
| 75 client_at.run_test('network_DisableInterface', | 76 client_at.run_test('network_DisableInterface', |
| 76 iface_name='wlan0', tag='wlan0') | 77 iface_name='wlan0', tag='wlan0') |
| 77 # TODO(petkov): If Bluetooth is not available on the platform, this test will | 78 # TODO(petkov): If Bluetooth is not available on the platform, this test will |
| 78 # fail. Fix this once we have a way to run platform-dependent tests. | 79 # fail. Fix this once we have a way to run platform-dependent tests. |
| 79 client_at.run_test('network_DisableInterface', | 80 client_at.run_test('network_DisableInterface', |
| 80 iface_name='hci0', tag='hci0') | 81 iface_name='hci0', tag='hci0') |
| 81 | 82 |
| OLD | NEW |