Lines Matching refs:var
82 var=line.split(":")[0].strip()
83 if not var in ['test','testset','build']:
108 var=newline.split(":")[0].strip()
109 if not var in ['test','testset','build']:
116 var=line.split(":")[0].strip()
117 if var in ['test','testset','build']:
423 var=lsplit[0].strip()
425 if not var in acceptedkeys:
426 …raise Exception("\n\nError in test harness parsing file: "+srcfile+"\n"+var+" from: "+line+" is no…
431 if var in subdict[subtestname]:
432 subdict[subtestname][var]+=" "+val
434 subdict[subtestname][var]=val
438 elif var=="test":
447 if var in subdict:
448 if var in appendlist:
449 subdict[var]+=" "+val
451 …raise Exception("\n\nError in test harness parsing file: "+srcfile+"\n"+var+" entered twice: "+lin…
453 subdict[var]=val
454 if var=="suffix":
457 if var == "env" and len(val) == 0:
458 …r in test harness parsing file: "+srcfile+"\nvalue for {}: directive cannot be empty!".format(var))
595 for var in rDict[sfile][runex]:
596 if var.startswith("test"): continue
597 print(indent*2+var+": "+str(rDict[sfile][runex][var]))
599 for var in rDict[sfile][runex]['subtests']:
600 print(indent*2+var)
601 for var2 in rDict[sfile][runex][var]:
602 print(indent*3+var2+": "+str(rDict[sfile][runex][var][var2]))