diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2021-04-18 12:59:20 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2021-04-18 12:59:20 -0400 |
commit | 6c150ac31512ce320b71999d034aa5c359cfc769 (patch) | |
tree | 13d6f3b74a221b73b8968ce3480c60561512045f | |
parent | c94f29e4bb0406e0adf7ce3f9865091bcfdfc690 (diff) | |
download | bfs-6c150ac31512ce320b71999d034aa5c359cfc769.tar.xz |
tests: Optimize test_delete_many()
-rwxr-xr-x | tests.sh | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1871,7 +1871,8 @@ function test_delete_many() { # Test for https://github.com/tavianator/bfs/issues/67 rm -rf scratch/* - touchp scratch/foo/{1..256} + mkdir scratch/foo + touch scratch/foo/{1..256} invoke_bfs scratch/foo -delete bfs_diff scratch |