From 930a7bfccabef7282b0fc816d96f6ff6b8a50629 Mon Sep 17 00:00:00 2001
From: Simon McVittie <smcv@collabora.com>
Date: Mon, 15 Jun 2020 17:03:38 +0100
Subject: [PATCH] tests: Assert that locale, localedef are symlinks in scout
 sysroot

The host system is assumed to be at least as new as scout (otherwise
nothing will work, least of all pressure-vessel-wrap), so we can assume
that the host glibc will be used.

Signed-off-by: Simon McVittie <smcv@collabora.com>
---
 tests/containers.py | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/tests/containers.py b/tests/containers.py
index a529f606c..6234ad404 100755
--- a/tests/containers.py
+++ b/tests/containers.py
@@ -647,6 +647,16 @@ class TestContainers(BaseTest):
             # Might not be /sbin/ldconfig, for example on non-Debian hosts
             self.assertRegex(target, r'^/run/host/')
 
+            if os.path.isfile('/usr/bin/locale'):
+                link = os.path.join(tree, 'usr', 'bin', 'locale')
+                target = os.readlink(link)
+                self.assertEqual(target, '/run/host/usr/bin/locale')
+
+            if os.path.isfile('/usr/bin/localedef'):
+                link = os.path.join(tree, 'usr', 'bin', 'localedef')
+                target = os.readlink(link)
+                self.assertEqual(target, '/run/host/usr/bin/localedef')
+
     def test_scout_sysroot(self) -> None:
         scout = os.path.join(self.containers_dir, 'scout_sysroot')
 
-- 
GitLab