1from autotest_lib.client.bin import test 2 3class error_cleanup(test.test): 4 version = 1 5 6 7 def execute(self): 8 pass 9 10 11 def cleanup(self): 12 raise NameError("test a bug in cleanup()") 13