Home
last modified time | relevance | path

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

/openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/
H A Dcve_check.py76 from oe.cve_check import has_cve_product_match
86 self.assertEqual(has_cve_product_match(status, "*:*"), True)
88 self.assertEqual(has_cve_product_match(status, "glibc"), True)
89 self.assertEqual(has_cve_product_match(status, "glibca"), True)
90 self.assertEqual(has_cve_product_match(status, "aglibc"), True)
91 self.assertEqual(has_cve_product_match(status, "*"), True)
97 self.assertEqual(has_cve_product_match(status, "*:*"), False)
98 self.assertEqual(has_cve_product_match(status, "*"), False)
100 self.assertEqual(has_cve_product_match(status, "glibc"), True)
111 self.assertEqual(has_cve_product_match(status, "*:*"), False)
[all …]
/openbmc/openbmc/poky/meta/lib/oe/
H A Dcve_check.py137 if has_cve_product_match(decoded_status, products) == True:
274 def has_cve_product_match(detailed_status, products): function