summaryrefslogtreecommitdiffstats
path: root/tests.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests.sh')
-rwxr-xr-xtests.sh8
1 files changed, 7 insertions, 1 deletions
diff --git a/tests.sh b/tests.sh
index 0a2f60a..493bfab 100755
--- a/tests.sh
+++ b/tests.sh
@@ -36,6 +36,7 @@ function links_structure() {
mkdir -p "$1/d/e"
ln -s ../../d "$1/d/e/f"
touchp "$1/d/e/g"
+ ln -s q "$1/d/e/h"
}
# Checks for any (order-independent) differences between bfs and find
@@ -168,7 +169,12 @@ function test_0023() {
find_diff -H "$1" -newer "$1/d/e/f"
}
-for i in {1..23}; do
+function test_0024() {
+ links_structure "$1"
+ find_diff -H "$1/d/e/h"
+}
+
+for i in {1..24}; do
dir="$(mktemp -d "${TMPDIR:-/tmp}"/bfs.XXXXXXXXXX)"
test="test_$(printf '%04d' $i)"
"$test" "$dir"