| 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('login_Backdoor', creds='$backdoor') | 23 job.run_test('login_Backdoor', creds='$backdoor') |
| 23 job.run_test('login_BadAuthentication') | 24 job.run_test('login_BadAuthentication') |
| 24 job.run_test('login_CryptohomeIncognitoMounted', creds='$backdoor') | 25 job.run_test('login_CryptohomeIncognitoMounted', creds='$backdoor') |
| 25 job.run_test('login_CryptohomeMounted') | 26 job.run_test('login_CryptohomeMounted') |
| 26 job.run_test('login_LoginSuccess') | 27 job.run_test('login_LoginSuccess') |
| 27 job.run_test('platform_FilePerms') | 28 job.run_test('platform_FilePerms') |
| 28 job.run_test('platform_OSLimits') | 29 job.run_test('platform_OSLimits') |
| 29 | 30 |
| 30 ### Local Variables: | 31 ### Local Variables: |
| 31 ### mode: python | 32 ### mode: python |
| 32 ### End: | 33 ### End: |
| OLD | NEW |