Home | History | Annotate | Download | only in aborttest
      1 from autotest_lib.client.common_lib import error
      2 from autotest_lib.client.bin import test
      3 
      4 class aborttest(test.test):
      5     version = 1
      6 
      7     def execute(self):
      8         raise error.JobError('Arrrrrrrrggggh. You are DOOOMED')
      9