diff options
| author | Jakob Unterwurzacher | 2025-04-07 21:27:49 +0200 | 
|---|---|---|
| committer | Jakob Unterwurzacher | 2025-04-07 21:37:03 +0200 | 
| commit | 0459e6ad1fbec7c9ae664f266916e519f095c08c (patch) | |
| tree | 7315557e56c5ed94393f972a8737431d2ae8732a | |
| parent | 27abe23de847eff630f6768e7296cf3e6a6322b4 (diff) | |
stress_tests/parallel_cp.sh: note that problem is fixed
| -rwxr-xr-x | tests/stress_tests/parallel_cp.sh | 8 | 
1 files changed, 6 insertions, 2 deletions
| diff --git a/tests/stress_tests/parallel_cp.sh b/tests/stress_tests/parallel_cp.sh index cd08d31..f113248 100755 --- a/tests/stress_tests/parallel_cp.sh +++ b/tests/stress_tests/parallel_cp.sh @@ -2,15 +2,16 @@  #  # Simplified xfstests generic/273  # -# Fails with +# Used to fail with  #  #   cp: cannot create regular file 'sub_49/file_773': No such file or directory  #  # If you cannot reproduce, try running this in the background:  # -#   while sleep 0.1 ; do echo 3 > /proc/sys/vm/drop_caches ; done" +#   while sleep 0.1 ; do echo 3 > /proc/sys/vm/drop_caches ; done  #  # See https://github.com/rfjakob/gocryptfs/issues/322 for details. +# Fixed by https://github.com/hanwen/go-fuse/commit/d0fca860a5759d17592becfa1b8e5b1bd354b24a .  if [[ -z $TMPDIR ]]; then  	TMPDIR=/var/tmp @@ -24,6 +25,9 @@ source ../fuse-unmount.bash  # Set the GOPATH variable to the default if it is empty  GOPATH=$(go env GOPATH) +echo "$MYNAME: using gocryptfs at $GOPATH/bin/gocryptfs" +$GOPATH/bin/gocryptfs --version +  # Backing directory  DIR=$(mktemp -d "$TMPDIR/$MYNAME.XXX")  $GOPATH/bin/gocryptfs -q -init -extpass "echo test" -scryptn=10 "$DIR" | 
