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
3# found in the LICENSE file.
4
5AUTHOR = "Aviv Keshet"
6NAME = "dummy_Fail.retry_alwaysfail"
7PURPOSE = "Demonstrate failure methods of autotests."
8CRITERIA = "This test will never succeed."
9ATTRIBUTES = "suite:dummyflake, suite:push_to_prod"
10SUITE = "dummyflake, push_to_prod"
11TIME = "SHORT"
12TEST_CATEGORY = "General"
13TEST_CLASS = "dummy"
14TEST_TYPE = "client"
15RETRIES = 5
16
17DOC = """
18This is a dummy that will fail after the first attempt, despite
19having a non-zero RETRIES value.
20"""
21
22job.run_test('dummy_Fail', tag='Fail', to_throw='TestFail')
23
24