summaryrefslogtreecommitdiffstats
path: root/tests.sh
diff options
context:
space:
mode:
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