diff --git a/tests/pressure-vessel/containers.py b/tests/pressure-vessel/containers.py index 9bea17f217bcd363628a453355a20fba5997465a..549366f692a14b25e65fe8d8f8e1086b6a2f945d 100755 --- a/tests/pressure-vessel/containers.py +++ b/tests/pressure-vessel/containers.py @@ -370,6 +370,7 @@ class TestContainers(BaseTest): cls.host_srsi = host_srsi if host_srsi is not None: + logger.info("We have the host srsi %s", host_srsi) with open( os.path.join(cls.artifacts, 'host-srsi.json'), 'w', @@ -397,6 +398,7 @@ class TestContainers(BaseTest): ) as reader: cls.host_srsi_parsed = json.load(reader) else: + logger.info("The host srsi is missing") os.environ.pop('HOST_STEAM_RUNTIME_SYSTEM_INFO_JSON', None) cls.host_srsi_parsed = {} diff --git a/tests/pressure-vessel/inside-runtime.py b/tests/pressure-vessel/inside-runtime.py index 3914843e70a3427bc07e1afb8f14ac66c85c41b8..819c1c6be88a1c5f98c4eeca21b7c767c00be2ae 100755 --- a/tests/pressure-vessel/inside-runtime.py +++ b/tests/pressure-vessel/inside-runtime.py @@ -251,6 +251,17 @@ class TestInsideRuntime(BaseTest): cache, Path('/etc/ld-i686-pc-linux-gnu.cache').resolve() ) + def is_loadable_duplicated(self, srsi_parsed, key, sub_key) -> bool: + if srsi_parsed is None: + return False + + if key in srsi_parsed and sub_key in srsi_parsed[key]: + for loadable in srsi_parsed[key][sub_key]: + if "duplicated" in loadable.get('issues', ''): + return True + + return False + def test_srsi(self) -> None: overrides = Path('/overrides').resolve() @@ -401,6 +412,30 @@ class TestInsideRuntime(BaseTest): self.assertIn('architectures', parsed) + if host_parsed: + # If we have an ICD or Layer flagged as duplicated in the + # container, we expect that the same thing to happen in the + # host too. + self.assertEqual( + self.is_loadable_duplicated(parsed, 'egl', 'icds'), + self.is_loadable_duplicated(host_parsed, 'egl', 'icds'), + ) + + self.assertEqual( + self.is_loadable_duplicated(parsed, 'vulkan', 'icds'), + self.is_loadable_duplicated(host_parsed, 'vulkan', 'icds'), + ) + + self.assertEqual( + self.is_loadable_duplicated(parsed, 'vulkan', 'explicit_layers'), + self.is_loadable_duplicated(host_parsed, 'vulkan', 'explicit_layers'), + ) + + self.assertEqual( + self.is_loadable_duplicated(parsed, 'vulkan', 'implicit_layers'), + self.is_loadable_duplicated(host_parsed, 'vulkan', 'implicit_layers'), + ) + for multiarch in parsed['architectures']: if not (Path('/usr/lib') / multiarch).is_dir(): continue