diff options
author | Jakob Unterwurzacher | 2025-05-10 11:51:25 +0200 |
---|---|---|
committer | Jakob Unterwurzacher | 2025-05-10 11:51:45 +0200 |
commit | 735b194a2c6e6c2c36ecfb37b0e64d16e52577bf (patch) | |
tree | daab5987929c9b3b68d263cb4175866808022f93 | |
parent | 9b6e47fc0a2ed65d462424152a13f995a8d7dd9a (diff) |
tests: fsstress-gocryptfs.bash: inform user that they should wait for cleanup
Without this message, fsstress-gocryptfs.bash seems to just hang after Ctrl-C.
-rwxr-xr-x | tests/stress_tests/fsstress-gocryptfs.bash | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/stress_tests/fsstress-gocryptfs.bash b/tests/stress_tests/fsstress-gocryptfs.bash index 43b4222..e6c3281 100755 --- a/tests/stress_tests/fsstress-gocryptfs.bash +++ b/tests/stress_tests/fsstress-gocryptfs.bash @@ -83,7 +83,7 @@ done echo " ok: $MNT" # Cleanup trap -trap "kill %1 ; cd / ; fuse-unmount -z $MNT ; rm -rf $DIR $MNT" EXIT +trap "echo ' cleaning up...' ; kill %1 ; cd / ; fuse-unmount -z $MNT ; rm -rf $DIR $MNT" EXIT echo "Starting fsstress loop" N=1 |