| 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 27 matching lines...) Expand all Loading... |
| 38 'desktopui_ScreenSaverUnlock', | 38 'desktopui_ScreenSaverUnlock', |
| 39 'desktopui_ChromeFirstRender', | 39 'desktopui_ChromeFirstRender', |
| 40 'hardware_DiskSize', | 40 'hardware_DiskSize', |
| 41 'hardware_MemoryTotalSize', | 41 'hardware_MemoryTotalSize', |
| 42 'hardware_SsdDetection', | 42 'hardware_SsdDetection', |
| 43 'login_AuthenticationTests', | 43 'login_AuthenticationTests', |
| 44 'login_PamModuleLoadTest', | 44 'login_PamModuleLoadTest', |
| 45 'network_WiFiCaps', | 45 'network_WiFiCaps', |
| 46 'platform_AccurateTime', | 46 'platform_AccurateTime', |
| 47 'platform_DaemonsRespawn', | 47 'platform_DaemonsRespawn', |
| 48 'platform_DiskIterate', |
| 48 'platform_FilePerms', | 49 'platform_FilePerms', |
| 49 'platform_KernelVersion', | 50 'platform_KernelVersion', |
| 50 'platform_NoOpenFilesAtShutdown', | 51 'platform_NoOpenFilesAtShutdown', |
| 51 'platform_Shutdown', | 52 'platform_Shutdown', |
| 52 'platform_UnmountCleanlyAtShutdown', | 53 'platform_UnmountCleanlyAtShutdown', |
| 53 'power_Resume', | 54 'power_Resume', |
| 54 'power_Status', | 55 'power_Status', |
| 55 ] | 56 ] |
| 56 | 57 |
| 57 for test in TESTS: | 58 for test in TESTS: |
| (...skipping 15 matching lines...) Expand all Loading... |
| 73 | 74 |
| 74 client_at.run_test('network_DisableInterface', | 75 client_at.run_test('network_DisableInterface', |
| 75 iface_name='eth0', tag='eth0') | 76 iface_name='eth0', tag='eth0') |
| 76 client_at.run_test('network_DisableInterface', | 77 client_at.run_test('network_DisableInterface', |
| 77 iface_name='wlan0', tag='wlan0') | 78 iface_name='wlan0', tag='wlan0') |
| 78 # TODO(petkov): If Bluetooth is not available on the platform, this test will | 79 # TODO(petkov): If Bluetooth is not available on the platform, this test will |
| 79 # fail. Fix this once we have a way to run platform-dependent tests. | 80 # fail. Fix this once we have a way to run platform-dependent tests. |
| 80 client_at.run_test('network_DisableInterface', | 81 client_at.run_test('network_DisableInterface', |
| 81 iface_name='hci0', tag='hci0') | 82 iface_name='hci0', tag='hci0') |
| 82 | 83 |
| OLD | NEW |