diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2022-12-16 14:17:07 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2022-12-16 14:17:07 -0500 |
commit | e01042b84abdfa224d47e6d11eb9798ce4c7d2f8 (patch) | |
tree | f55d5e3adfa5a5fb23119d9b149c76c289c12a0d /tests/bsd/flags.sh | |
parent | 681f14f7cdff2d8fae235b8fd09745cfcb93e666 (diff) | |
download | bfs-e01042b84abdfa224d47e6d11eb9798ce4c7d2f8.tar.xz |
tests: Replace skip_unless test with test || skip
Diffstat (limited to 'tests/bsd/flags.sh')
-rw-r--r-- | tests/bsd/flags.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/bsd/flags.sh b/tests/bsd/flags.sh index ffb1cc2..949a7d3 100644 --- a/tests/bsd/flags.sh +++ b/tests/bsd/flags.sh @@ -1,8 +1,8 @@ -skip_unless invoke_bfs scratch -quit -flags offline +invoke_bfs scratch -quit -flags offline || skip clean_scratch "$XTOUCH" scratch/{foo,bar} -skip_unless chflags offline scratch/bar +chflags offline scratch/bar || skip bfs_diff scratch -flags -offline,nohidden |