1#!/usr/bin/env python3 2# -*- coding: utf-8 -*- 3# Copyright 2020 The Chromium OS Authors. All rights reserved. 4# Use of this source code is governed by a BSD-style license that can be 5# found in the LICENSE file. 6 7"""Emulate running of test setup script, is_good.py should fail without this.""" 8 9from __future__ import print_function 10 11import sys 12 13 14def Main(): 15 # create ./is_setup 16 with open('./is_setup', 'w', encoding='utf-8'): 17 pass 18 19 return 0 20 21 22if __name__ == '__main__': 23 retval = Main() 24 sys.exit(retval) 25