| # Copyright (c) 2010 The Chromium OS Authors. All rights reserved. |
| # Use of this source code is governed by a BSD-style license that can be |
| # found in the LICENSE file. |
| |
| AUTHOR = "Aviv Keshet" |
| NAME = "dummy_retry_alwaysfail" |
| PURPOSE = "Demonstrate failure methods of autotests." |
| CRITERIA = "This test will never succeed." |
| SUITE = "dummyflake" |
| TIME = "SHORT" |
| TEST_CATEGORY = "General" |
| TEST_CLASS = "dummy" |
| TEST_TYPE = "client" |
| RETRIES = 5 |
| |
| DOC = """ |
| This is a dummy that will fail after the first attempt, despite |
| having a non-zero RETRIES value. |
| """ |
| |
| job.run_test('dummy_Fail', tag='Fail', to_throw='TestFail') |
| |