crash_gen_bootstrap.py 787 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
# -----!/usr/bin/python3.7
###################################################################
#           Copyright (c) 2016 by TAOS Technologies, Inc.
#                     All rights reserved.
#
#  This file is proprietary and confidential to TAOS Technologies.
#  No part of this file may be reproduced, stored, transmitted,
#  disclosed or used in any form or by any means other than as
#  expressly provided by the written permission from Jianhui Tao
#
###################################################################

import sys
S
Steven Li 已提交
14
from crash_gen.crash_gen_main import MainExec
15 16 17 18 19 20 21

if __name__ == "__main__":
    
    mExec = MainExec()
    mExec.init()
    exitCode = mExec.run()

22
    print("\nCrash_Gen is now exiting with status code: {}".format(exitCode))
23
    sys.exit(exitCode)