Message ID | 20230831-nfs-skip-v1-3-d54c1c6a9af2@kernel.org (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | generic: skip a few tests on NFS | expand |
diff --git a/tests/generic/187 b/tests/generic/187 index 0653b92f12f4..05e609964a9d 100755 --- a/tests/generic/187 +++ b/tests/generic/187 @@ -36,6 +36,9 @@ _require_xfs_io_command "fpunch" test $FSTYP = "btrfs" && _notrun "Can't fragment free space on btrfs." _require_odirect +# This test is unreliable on NFS, as it depends on the exported filesystem. +test $FSTYP = "nfs" && _notrun "This test is unreliable on NFS" + _fragment_freesp() { file=$1
This test is unreliable on NFS. It fails consistently when run vs. a server exporting btrfs, but passes when the server exports xfs. Since we don't have any sort of attribute that we can require to test this, just skip this one on NFS. Signed-off-by: Jeff Layton <jlayton@kernel.org> --- tests/generic/187 | 3 +++ 1 file changed, 3 insertions(+)