[elbe-devel] [PATCH 5/9] test: test_elbevalidate: gracefully handle unreadable kernel images

Thomas Weißschuh thomas.weissschuh at linutronix.de
Fri Mar 21 14:31:29 CET 2025


libguestfs used by elbevalidate uses the currently running kernel for its
supermin appliance. On Ubuntu the kernel images are not world-readable,
breaking libguestfs.

If this case is detected, gracefully skip the tests instead.

Signed-off-by: Thomas Weißschuh <thomas.weissschuh at linutronix.de>
---
 test/test_elbevalidate.py | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/test/test_elbevalidate.py b/test/test_elbevalidate.py
index 1ac844dbcc2d93f29ed4daacc1d0ef3850a8ca1f..a4c2666d6e8abf286ca92ce43f681c62b23cf96b 100644
--- a/test/test_elbevalidate.py
+++ b/test/test_elbevalidate.py
@@ -3,6 +3,7 @@
 # SPDX-FileCopyrightText: 2013-2014, 2017-2018 Linutronix GmbH
 
 import importlib
+import os
 import pathlib
 import struct
 import subprocess
@@ -14,6 +15,10 @@ import pytest
 
 @pytest.fixture
 def elbevalidate():
+    for image in pathlib.Path('/boot').glob('vmlinuz-*'):
+        if not os.access(image, os.R_OK):
+            pytest.skip(f'Kernel image {image} is not readable')
+
     try:
         return importlib.import_module('elbevalidate', package=__name__)
     except ModuleNotFoundError as e:

-- 
2.48.1



More information about the elbe-devel mailing list