All of lore.kernel.org
 help / color / mirror / Atom feed
* [LTP] [PATCH 1/1] commands/df01.sh: Drop redundant fuseblk pattern
@ 2026-07-08 14:42 Vasileios Almpanis via ltp
  2026-07-08 15:24 ` [LTP] " linuxtestproject.agent
  2026-07-09  7:03 ` [LTP] [PATCH 1/1] " Li Wang
  0 siblings, 2 replies; 3+ messages in thread
From: Vasileios Almpanis via ltp @ 2026-07-08 14:42 UTC (permalink / raw)
  To: ltp

The regular expression already matches "fuseblk" through the unanchored
"fuse" alternative, making the explicit "fuseblk" alternative
unnecessary. Let's drop it.

Fixes: dbc966d4adb6 ("df01: detect "fuse" fstype in addition to "fuseblk"")
Signed-off-by: Vasileios Almpanis <vasileios.almpanis@virtuozzo.com>
---
 testcases/commands/df/df01.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/testcases/commands/df/df01.sh b/testcases/commands/df/df01.sh
index 72b02ce34..6f0ad71ac 100755
--- a/testcases/commands/df/df01.sh
+++ b/testcases/commands/df/df01.sh
@@ -15,7 +15,7 @@ TST_NEEDS_ROOT=1
 
 setup()
 {
-	DF_FS_TYPE="$(grep -E "$TST_MNTPOINT ($TST_FS_TYPE|fuseblk|fuse)" /proc/mounts | awk 'NR==1{print $3}')"
+	DF_FS_TYPE="$(grep -E "$TST_MNTPOINT ($TST_FS_TYPE|fuse)" /proc/mounts | awk 'NR==1{print $3}')"
 }
 
 df_test()
-- 
2.43.0


-- 
Mailing list info: https://lists.linux.it/listinfo/ltp

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2026-07-09  7:03 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-07-08 14:42 [LTP] [PATCH 1/1] commands/df01.sh: Drop redundant fuseblk pattern Vasileios Almpanis via ltp
2026-07-08 15:24 ` [LTP] " linuxtestproject.agent
2026-07-09  7:03 ` [LTP] [PATCH 1/1] " Li Wang

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.