Home
last modified time | relevance | path

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

/openbmc/linux/tools/testing/selftests/tc-testing/
H A Dtdc.py280 if type(matchJSONVal) == list:
283 elif type(matchJSONVal) == dict:
295 if (type(matchJSONVal) != type(outputJSONVal)):
297 failmsg = failmsg.format(outputJSONVal, matchJSONVal)
302 if len(matchJSONVal) > len(outputJSONVal):
304 failmsg = failmsg.format(len(outputJSONVal), outputJSONVal, len(matchJSONVal), matchJSONVal)
309 for matchJSONIdx, matchJSONVal in enumerate(matchJSONVal):
314 def find_in_json_dict(res, outputJSONVal, matchJSONVal): argument
315 for matchJSONKey, matchJSONVal in matchJSONVal.items():
333 if len(matchJSONVal) > 0:
[all …]