Home | History | Annotate | Download | only in test
      1 #!/usr/bin/env python2
      2 """Emulate test setup that fails (i.e. failed flash to device)"""
      3 
      4 from __future__ import print_function
      5 
      6 import sys
      7 
      8 
      9 def Main():
     10   return 1  ## False, flashing failure
     11 
     12 
     13 if __name__ == '__main__':
     14   retval = Main()
     15   sys.exit(retval)
     16