1# CMD: Returns the modules that have test_suites property with $arg as one of its value. Use $arg2 as the top level field key to be collected, e.g. Name, Blueprint. 2 3def hasTestSuitesWithValue($a): 4 .[] | select(.Name == "Test_suites") | .Values | .[] | . == $a 5; 6 7[.[] | 8select(.Module.Android.SetProperties | 9 if . == null then [] else . end | 10 hasTestSuitesWithValue($arg)) | 11.[$arg2] ] | unique | sort | .[] 12