Home | History | Annotate | Download | only in error_test_na
      1 from autotest_lib.client.common_lib import error
      2 from autotest_lib.client.bin import test
      3 
      4 class error_test_na(test.test):
      5     version = 1
      6 
      7 
      8     def execute(self):
      9         raise error.TestNAError("This test can't run on this host.")
     10