[LTP] [PATCH] shell_loader_filesystems: add tmpfs support to avoid fail in GitHub CI

Li Wang liwang@redhat.com
Fri Mar 21 14:16:21 CET 2025


GitHub CI currently fails when running shell_loader_filesystems.sh because
the Docker environment does not have support for XFS and Btrfs. This results
in a TCONF failure, causing the CI job to fail:

  * shell_loader_filesystems.sh (TCONF, exp: TPASS)
  make: *** [Makefile:210: test-shell-loader] Error 1

To resolve this, we add tmpfs to the list of tested filesystems. Since tmpfs
is always available in GitHub CI, this ensures that the test runs successfully
even when XFS and Btrfs are unavailable.

CI: https://github.com/wangli5665/ltp/actions/runs/13992429178

Signed-off-by: Li Wang <liwang@redhat.com>
---
 testcases/lib/tests/shell_loader_filesystems.sh | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/testcases/lib/tests/shell_loader_filesystems.sh b/testcases/lib/tests/shell_loader_filesystems.sh
index fe6170800..b7e1f9ba4 100755
--- a/testcases/lib/tests/shell_loader_filesystems.sh
+++ b/testcases/lib/tests/shell_loader_filesystems.sh
@@ -9,6 +9,9 @@
 #  "mntpoint": "ltp_mntpoint",
 #  "filesystems": [
 #   {
+#    "type": "tmpfs"
+#   },
+#   {
 #    "type": "btrfs"
 #   },
 #   {
-- 
2.48.1



More information about the ltp mailing list