Home
last modified time | relevance | path

Searched refs:outputJSONVal (Results 1 – 1 of 1) sorted by relevance

/openbmc/linux/tools/testing/selftests/tc-testing/
H A Dtdc.py295 if (type(matchJSONVal) != type(outputJSONVal)):
302 if len(matchJSONVal) > len(outputJSONVal):
304 failmsg = failmsg.format(len(outputJSONVal), outputJSONVal, len(matchJSONVal), matchJSONVal)
314 def find_in_json_dict(res, outputJSONVal, matchJSONVal): argument
316 if type(outputJSONVal) == dict:
317 if matchJSONKey not in outputJSONVal:
331 if type(outputJSONVal) == dict and (type(outputJSONVal[matchJSONKey]) == dict or
332 type(outputJSONVal[matchJSONKey]) == list):
343 if matchJSONKey in outputJSONVal:
344 if matchJSONVal != outputJSONVal[matchJSONKey]:
[all …]