Home | History | Annotate | Download | only in tests

Lines Matching refs:b2

130 # b1 and b2 are the actual stdout and stderr.
136 def compareOuput(a1,a2,b1,b2):
138 totalLen = len(a1) + len(a2) + len(b1) + len(b2)
140 a1, b2 = matchCommon(a1, b2)
142 a2, b2 = matchCommon(a2, b2)
143 newTotalLen = len(a1) + len(a2) + len(b1) + len(b2)
147 print "Failed at %d %d %d %d" % (len(a1), len(a2), len(b1), len(b2))
151 print "b2", b2
177 b2 = stdErrResult.splitlines()
179 self.assertEqual(True, compareOuput(a1,a2,b1,b2))