Home | History | Annotate | Download | only in error_setup
      1 from autotest_lib.client.bin import test
      2 
      3 class error_setup(test.test):
      4     version = 1
      5 
      6 
      7     def setup(self):
      8         raise ValueError("test a bug in setup()")
      9 
     10     def execute(self):
     11         pass
     12