summaryrefslogtreecommitdiff
path: root/automated/lib/py_test_lib.py
blob: e8932bfaa49dffd6f866899a78d51e8d095a8ab3 (plain)
1
2
3
4
def add_result(result_file, result):
    print(result)
    with open(result_file, 'a') as f:
        f.write('%s\n' % result)