1 # Copyright (c) 2013 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 5 AUTHOR = "Chrome OS Team" 6 NAME = "dummy_Fail.dependency" 7 PURPOSE = """ 8 Test if dependency is properly processed, the test should be shown as TEST_NA in 9 suite job result. 10 """ 11 CRITERIA = "This test will never succeed." 12 ATTRIBUTES = "suite:push_to_prod" 13 SUITE = "push_to_prod" 14 DEPENDENCIES = "no_such_dependency" 15 TIME = "SHORT" 16 TEST_CATEGORY = "General" 17 TEST_CLASS = "dummy" 18 TEST_TYPE = "client" 19 20 DOC = """ 21 This is a helper test that will fail in a number of ways. 22 """ 23 24 job.run_test('dummy_Fail', tag='Error', to_throw='TestError') 25