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