def runTest()

in fiosynth_lib/fiosynth.py [0:0]


def runTest(dut_list, profile, args, csvFolderPath, rtype, index, rcycle):
    jfile = run_fio(profile, index, dut_list, args, rcycle, rtype)
    if args.dryrun == "n":
        if dut_list[0].inLocalMode():  # Health tools only works locally
            runHealthMon(dut_list[0].fname, args.health, args.getflash)
            results = Parser(jfile, "%s/%s.csv" % (FioDUT.fname, FioDUT.fname))
            parseLocalResults(results)
        else:
            fio_json_parser.parseServerResults(jfile, csvFolderPath)
    else:
        print("parse file: %s" % jfile)