Skip to content
Snippets Groups Projects
Commit ad9ee411 authored by Simon McVittie's avatar Simon McVittie
Browse files

tests: Assert that /usr/share/libdrm gets linked into scout sysroot

parent 675f6565
No related branches found
No related tags found
No related merge requests found
......@@ -624,6 +624,13 @@ class TestContainers(BaseTest):
'/run/host/usr/lib/{}/gconv'.format(multiarch),
)
if os.path.isdir('/usr/share/libdrm'):
link = os.path.join(
tree, 'usr', 'share', 'libdrm',
)
target = os.readlink(link)
self.assertEqual(target, '/run/host/usr/share/libdrm')
if is_scout:
if os.path.isdir('/usr/lib/locale'):
link = os.path.join(tree, 'usr', 'lib', 'locale')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment