From 3c7663664311d1c5c3d70c9a9421d0229639a195 Mon Sep 17 00:00:00 2001 From: Tomasz Duda Date: Sat, 30 Nov 2024 13:41:16 +0100 Subject: [PATCH] add tests for f2fs Signed-off-by: Tomasz Duda --- fs/fs_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/fs/fs_test.go b/fs/fs_test.go index 32395cc252..08dbcc973a 100644 --- a/fs/fs_test.go +++ b/fs/fs_test.go @@ -570,6 +570,7 @@ func TestProcessMounts(t *testing.T) { {Root: "/", Mountpoint: "/g", Source: "127.0.0.1:/nfs", FSType: "nfs4", Major: 253, Minor: 6}, {Root: "/", Mountpoint: "/test1", Source: "tmpfs", FSType: "tmpfs", Major: 253, Minor: 4}, {Root: "/", Mountpoint: "/test2", Source: "tmpfs", FSType: "tmpfs", Major: 253, Minor: 4}, + {Root: "/", Mountpoint: "/h", Source: "/dev/sdh", FSType: "f2fs", Major: 253, Minor: 7}, }, expected: map[string]partition{ "/dev/sda": {fsType: "ext3", mountpoint: "/a", major: 253, minor: 0}, @@ -581,6 +582,7 @@ func TestProcessMounts(t *testing.T) { "127.0.0.1:/nfs": {fsType: "nfs4", mountpoint: "/g", major: 253, minor: 6}, "/test1": {fsType: "tmpfs", mountpoint: "/test1", major: 253, minor: 4}, "/test2": {fsType: "tmpfs", mountpoint: "/test2", major: 253, minor: 4}, + "/dev/sdh": {fsType: "f2fs", mountpoint: "/h", major: 253, minor: 7}, }, }, }