Lines Matching full:output
53 self.fail("FAILED: could not find key_float in description output")
180 output = string_struct.GetStringValue(25)
181 if not "STRING" in output:
182 self.fail("wrong output: " + output)
186 output = string_struct.GetIntegerValue()
187 if output:
189 "Valid integer value " + str(output) + " returned for a string object"
206 output = uint_struct.GetUnsignedIntegerValue()
207 if not output == 0xFFFFFFFF00000000:
208 self.fail("wrong output: " + str(output))
212 output = uint_struct.GetStringValue(25)
213 if output:
214 self.fail("Valid string " + output + " returned for an integer object")
230 output = sint_struct.GetSignedIntegerValue()
231 if not output == -42:
232 self.fail("wrong output: " + str(output))
236 output = sint_struct.GetStringValue(69)
237 if output:
238 self.fail("Valid string " + output + " returned for an integer object")
251 output = floating_point_struct.GetFloatValue()
252 if not output == 2.99:
253 self.fail("wrong output: " + str(output))
266 output = bool_struct.GetBooleanValue()
267 if not output:
268 self.fail("wrong output: " + str(output))
292 output = string_struct.GetStringValue(5)
293 if not output == "23":
294 self.fail("wrong output: " + str(output))
301 output = string_struct.GetStringValue(5)
302 if not output == "arr":
303 self.fail("wrong output: " + str(output))