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