23 lines
600 B
Plaintext
23 lines
600 B
Plaintext
|
|
# Copyright (c) 2011 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 = "ChromeOS Team"
|
||
|
|
NAME = "stub_Pass.experimental"
|
||
|
|
PURPOSE = "Demonstrate success methods of autotests."
|
||
|
|
CRITERIA = "This test will always succeed."
|
||
|
|
ATTRIBUTES = "suite:stub, suite:stubclientretries, suite:something_else"
|
||
|
|
TIME = "SHORT"
|
||
|
|
TEST_CATEGORY = "General"
|
||
|
|
TEST_CLASS = "stub"
|
||
|
|
TEST_TYPE = "client"
|
||
|
|
PY_VERSION = 3
|
||
|
|
|
||
|
|
DOC = """
|
||
|
|
This is a helper test that will succeed.
|
||
|
|
"""
|
||
|
|
|
||
|
|
job.run_test('stub_Pass', tag='experimental')
|
||
|
|
|
||
|
|
|