| 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 = "Smoke" | 6 NAME = "Smoke" |
| 7 TIME = "LONG" | 7 TIME = "LONG" |
| 8 TEST_CATEGORY = "Functional" | 8 TEST_CATEGORY = "Functional" |
| 9 TEST_CLASS = "suite" | 9 TEST_CLASS = "suite" |
| 10 TEST_TYPE = "client" | 10 TEST_TYPE = "client" |
| 11 | 11 |
| 12 DOC = """ | 12 DOC = """ |
| 13 This test suite runs smoke tests on each build from the buildbots. The tests | 13 This test suite runs smoke tests on each build from the buildbots. The tests |
| 14 listed here must be capable of running in a virtual machine. | 14 listed here must be capable of running in a virtual machine. |
| 15 """ | 15 """ |
| 16 | 16 |
| 17 job.run_test('build_RootFilesystemSize') | 17 job.run_test('build_RootFilesystemSize') |
| 18 job.run_test('desktopui_ChromeFirstRender') | 18 job.run_test('desktopui_ChromeFirstRender') |
| 19 job.run_test('desktopui_FlashSanityCheck') | 19 job.run_test('desktopui_FlashSanityCheck') |
| 20 job.run_test('desktopui_KillRestart', binary='^chrome$', tag='chrome') | 20 job.run_test('desktopui_KillRestart', binary='^chrome$', tag='chrome') |
| 21 job.run_test('desktopui_KillRestart', binary='^session_manager$', tag='session') | 21 job.run_test('desktopui_KillRestart', binary='^session_manager$', tag='session') |
| 22 job.run_test('logging_CrashSender') | 22 job.run_test('logging_CrashSender') |
| 23 job.run_test('logging_UserCrash') | |
| 24 job.run_test('login_BadAuthentication') | 23 job.run_test('login_BadAuthentication') |
| 25 job.run_test('login_CryptohomeIncognitoMounted') | 24 job.run_test('login_CryptohomeIncognitoMounted') |
| 26 job.run_test('login_CryptohomeMounted') | 25 job.run_test('login_CryptohomeMounted') |
| 27 job.run_test('login_CryptohomeIncognitoUnmounted') | 26 job.run_test('login_CryptohomeIncognitoUnmounted') |
| 28 job.run_test('login_CryptohomeUnmounted') | 27 job.run_test('login_CryptohomeUnmounted') |
| 29 job.run_test('login_LoginSuccess', tag='default') | 28 job.run_test('login_LoginSuccess', tag='default') |
| 30 job.run_test('login_LoginSuccess', creds='$apps', tag='apps') | 29 job.run_test('login_LoginSuccess', creds='$apps', tag='apps') |
| 31 job.run_test('login_OwnershipTaken') | 30 job.run_test('login_OwnershipTaken') |
| 32 job.run_test('login_OwnershipNotRetaken') | 31 job.run_test('login_OwnershipNotRetaken') |
| 33 job.run_test('platform_FilePerms') | 32 job.run_test('platform_FilePerms') |
| 34 job.run_test('platform_OSLimits') | 33 job.run_test('platform_OSLimits') |
| 35 | 34 |
| 36 ### Local Variables: | 35 ### Local Variables: |
| 37 ### mode: python | 36 ### mode: python |
| 38 ### End: | 37 ### End: |
| OLD | NEW |