示例#1
0
def main():

    # Trap on SIGINTs
    signal.signal(signal.SIGINT, signalHandler)

    # parse arguments
    parser = CliParser.initParser()

    # run program
    Program.Run(parser)

    # Process the verbose log file to write the test execution results to an
    # Excel file in a more readable format if need be.
    processResults()

    return