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