[elbe-devel] [PATCH 3/9] elbepack: test_finetuning: fix <ln> test
Thomas Weißschuh
thomas.weissschuh at linutronix.de
Fri Mar 21 14:31:27 CET 2025
The implementation of <ln> uses chroot into the target filesystem.
This means that in the target filesystem a ln binary needs to be present,
which is not the case for the target filesystem dring testing.
Use the host filesystem instead, which should contain "ln".
Signed-off-by: Thomas Weißschuh <thomas.weissschuh at linutronix.de>
---
elbepack/tests/test_finetuning.py | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/elbepack/tests/test_finetuning.py b/elbepack/tests/test_finetuning.py
index 9d5cec4cbfd91dbef2eefd2cef5786d3192a0993..5e50b292195483380e27b9cbf37c11cf2df8daf8 100644
--- a/elbepack/tests/test_finetuning.py
+++ b/elbepack/tests/test_finetuning.py
@@ -80,9 +80,12 @@ def test_mv(target):
@requires_root
def test_ln(target):
+ root = elbepack.filesystem.Filesystem('/')
target.touch_file('foo')
- finetune(target, '<ln path="foo">bar</ln>')
+ finetune(root, '<ln path="foo">{}</ln>'.format(
+ target.fname('bar'),
+ ))
assert target.exists('foo')
assert target.islink('bar')
assert target.readlink('bar') == 'foo'
--
2.48.1
More information about the elbe-devel
mailing list