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 DEPENDENCIES = "no_such_dependency" 14 TIME = "SHORT" 15 TEST_CATEGORY = "General" 16 TEST_CLASS = "dummy" 17 TEST_TYPE = "client" 18 19 DOC = """ 20 This is a helper test that will fail in a number of ways. 21 """ 22 23 job.run_test('dummy_Fail', tag='Error', to_throw='TestError') 24