Пример #1
0
Файл: main.py Проект: alexxa/dva
def main(config, istream, ostream, verbose):
    result, ami_results = get_overall_result(load_yaml(istream), verbose)
    print >>ostream, '# overal result: %s' % result
    for ami_result, ami_log in ami_results:
        for log_line in ami_log:
            print >>ostream, log_line
    return result == RESULT_PASSED and 0 or 1
Пример #2
0
def main(config, istream, ostream, verbose):
    result, ami_results = get_overall_result(load_yaml(istream), verbose)
    print >> ostream, '# overal result: %s' % result
    for ami_result, ami_log in ami_results:
        for log_line in ami_log:
            print >> ostream, log_line
    return result == RESULT_PASSED and 0 or 1
Пример #3
0
def main(config, istream, ostream, whitelist, verbose):
    result, ami_results = get_overall_result(load_yaml(istream), whitelist, verbose)
    print >>ostream, '# overal result: %s' % result
    for ami_result, ami_log in ami_results:
        for log_line in ami_log:
            print >>ostream, log_line
    # result passed -> 0 otherwise 1;
    # please note: result == passed and 0 or 1 -> 1 always
    return result != RESULT_PASSED and 1 or 0
Пример #4
0
def main(config, istream, ostream, whitelist, verbose):
    result, ami_results = get_overall_result(load_yaml(istream), whitelist,
                                             verbose)
    print >> ostream, '# overal result: %s' % result
    for ami_result, ami_log in ami_results:
        for log_line in ami_log:
            print >> ostream, log_line
    # result passed -> 0 otherwise 1;
    # please note: result == passed and 0 or 1 -> 1 always
    return result != RESULT_PASSED and 1 or 0