diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2017-09-09 12:08:59 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2017-09-09 12:08:59 -0400 |
commit | 836fbdf183bca11d3a68eee890978fd7c7fd5dab (patch) | |
tree | 73b4dcbe4b3eb96517dffc1785bcc134197472e6 /tests.sh | |
parent | 500892f115aea9788da7649b59baaea38729aacf (diff) | |
download | bfs-836fbdf183bca11d3a68eee890978fd7c7fd5dab.tar.xz |
tests: Silence error messages while creating deep/
Some platforms will print errors like "cannot access parent directories:
Result too large"
Diffstat (limited to 'tests.sh')
-rwxr-xr-x | tests.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |