Home | History | Annotate | Download | only in test
      1 #!/usr/bin/python2
      2 """Emulate running of test setup script, is_good.py should fail without this."""
      3 
      4 from __future__ import print_function
      5 
      6 import sys
      7 
      8 
      9 def Main():
     10   # create ./is_setup
     11   with open('./is_setup', 'w'):
     12     pass
     13 
     14   return 0
     15 
     16 
     17 if __name__ == '__main__':
     18   retval = Main()
     19   sys.exit(retval)
     20