summaryrefslogtreecommitdiffstats
path: root/tests.sh
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2019-03-07 22:12:46 -0800
committerTavian Barnes <tavianator@tavianator.com>2019-03-07 22:13:10 -0800
commitaafdd8eead6b5856b9adecdbcec86acc194b8af0 (patch)
tree91bf8afb2474efeed893ea35ab33847072c58f92 /tests.sh
parent0689a4a16f5e80e0c2368f4a68c69ce5f2fdc038 (diff)
downloadbfs-aafdd8eead6b5856b9adecdbcec86acc194b8af0.tar.xz
eval: Fix -unique with -depth
Diffstat (limited to 'tests.sh')
-rwxr-xr-xtests.sh10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests.sh b/tests.sh
index f26e888..f7aaa8c 100755
--- a/tests.sh
+++ b/tests.sh
@@ -649,8 +649,10 @@ bfs_tests=(
test_type_multi
test_unique
+ test_unique_depth
test_L_unique
test_L_unique_loops
+ test_L_unique_depth
test_xtype_multi
test_xtype_reorder
@@ -1987,6 +1989,10 @@ function test_unique() {
bfs_diff links/{file,symlink,hardlink} -unique
}
+function test_unique_depth() {
+ bfs_diff basic -unique -depth
+}
+
function test_L_unique() {
bfs_diff -L links/{file,symlink,hardlink} -unique
}
@@ -1995,6 +2001,10 @@ function test_L_unique_loops() {
bfs_diff -L loops/deeply/nested -unique
}
+function test_L_unique_depth() {
+ bfs_diff -L loops/deeply/nested -unique -depth
+}
+
if [ -t 1 -a ! "$VERBOSE" ]; then
in_place=yes
fi