diff options
| author | Eric Biggers <ebiggers@google.com> | 2021-12-20 11:28:26 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-12-20 11:28:26 -0600 |
| commit | 9a8ce15408edae0c92128fd36f50dafa81013266 (patch) | |
| tree | b8d89c0ee0a18aa38b0a5df1d06ab6037f8c2190 /cli-tests/t_not_supported.sh | |
| parent | 1014b61a6a054b5c82b2be82e13d8ce28befba45 (diff) | |
| parent | d0b9e2c995beb13c70a1549923df482ff773f09b (diff) | |
Merge pull request #332 from ebiggers/skip-irrelevant-filesystems
filesystem: avoid accessing irrelevant filesystems
Diffstat (limited to 'cli-tests/t_not_supported.sh')
| -rwxr-xr-x | cli-tests/t_not_supported.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli-tests/t_not_supported.sh b/cli-tests/t_not_supported.sh index 53a096a..9ff90e1 100755 --- a/cli-tests/t_not_supported.sh +++ b/cli-tests/t_not_supported.sh @@ -9,8 +9,8 @@ _print_header "Mount tmpfs" umount "$MNT" mount tmpfs -t tmpfs -o size=128m "$MNT" -_print_header "Create fscrypt metadata on tmpfs" -fscrypt setup "$MNT" +_print_header "Try to create fscrypt metadata on tmpfs" +_expect_failure "fscrypt setup '$MNT'" _print_header "Try to encrypt a directory on tmpfs" mkdir "$MNT/dir" |