Skip to content

Commit

Permalink
Disable non-standard feature tests when unknown filesystem.
Browse files Browse the repository at this point in the history
  • Loading branch information
tarka committed Jun 29, 2024
1 parent 8529fb2 commit d61aefa
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion tests/scripts/test-linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,13 @@ zfs)
;;

*)
echo >&2 "WARNING: unknown filesystem $fs, some tests might fail"
echo >&2 "WARNING: unknown filesystem $fs, advanced FS tests disabled."
features+=(
test_no_acl
test_no_extents
test_no_reflink
test_no_sparse
)
;;
esac

Expand Down

1 comment on commit d61aefa

@xiota
Copy link

@xiota xiota commented on d61aefa Jun 29, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Related: #54

Please sign in to comment.