summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2017-09-09 12:08:59 -0400
committerTavian Barnes <tavianator@tavianator.com>2017-09-09 12:08:59 -0400
commit836fbdf183bca11d3a68eee890978fd7c7fd5dab (patch)
tree73b4dcbe4b3eb96517dffc1785bcc134197472e6
parent500892f115aea9788da7649b59baaea38729aacf (diff)
downloadbfs-836fbdf183bca11d3a68eee890978fd7c7fd5dab.tar.xz
tests: Silence error messages while creating deep/
Some platforms will print errors like "cannot access parent directories: Result too large"
-rwxr-xr-xtests.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests.sh b/tests.sh
index d664793..bd94583 100755
--- a/tests.sh
+++ b/tests.sh
@@ -129,7 +129,7 @@ function make_deep() {
# 17 * 256 > 16 * 256 == 4096 == PATH_MAX
for j in {1..17}; do
mkdir "$name"
- cd "$name"
+ cd "$name" 2>/dev/null
done
)
done