Lines Matching refs:d_new
74 def diffResults(d_old, d_new): argument
80 if t in d_new :
85 if x in d_new[t]:
87 if d_new[t][x] != 'PASS':
90 if d_new[t][x] == 'PASS':
99 if tp + x not in d_new[t]:
103 if tp + x in d_new[t]:
109 if exp + x not in d_new[t]:
113 if exp + x in d_new[t]:
127 d_new = parse(sys.argv[2]) variable
130 diffResults(d_old, d_new)