Home | History | Annotate | Download | only in error_test_fail
      1 from autotest_lib.client.common_lib import error
      2 from autotest_lib.client.bin import test
      3 
      4 class error_test_fail(test.test):
      5     version = 1
      6 
      7 
      8     def execute(self):
      9         raise error.TestFail("This test always fails.")
     10