diff options
author | Jakob Unterwurzacher | 2019-10-06 22:34:19 +0200 |
---|---|---|
committer | Jakob Unterwurzacher | 2019-10-06 22:34:19 +0200 |
commit | 65bc006a78c67b8f8cf0b01f8ed948dca6c1e408 (patch) | |
tree | b0d70bf38a380a7581741df6f7d6b20089fbd6b0 /tests/stress_tests/extractloop.bash | |
parent | a1f647740182a74eb84eed3135b0f171ac753fdb (diff) |
stress_tests: use /var/tmp by default
There is a good chance that /tmp is tmpfs, and we want to
run our tests on a real filesystem.
Diffstat (limited to 'tests/stress_tests/extractloop.bash')
-rwxr-xr-x | tests/stress_tests/extractloop.bash | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/tests/stress_tests/extractloop.bash b/tests/stress_tests/extractloop.bash index 742715d..c6e9632 100755 --- a/tests/stress_tests/extractloop.bash +++ b/tests/stress_tests/extractloop.bash @@ -11,6 +11,11 @@ # # See Documentation/extractloop.md for example output. +if [[ -z $TMPDIR ]]; then + TMPDIR=/var/tmp + export TMPDIR +fi + set -eu # Run at low priority to not annoy the user too much @@ -23,8 +28,8 @@ source ../fuse-unmount.bash # Setup dirs ../dl-linux-tarball.bash -cd /tmp -EXTRACTLOOP_TMPDIR=/tmp/extractloop_tmpdir +cd $TMPDIR +EXTRACTLOOP_TMPDIR=$TMPDIR/extractloop_tmpdir mkdir -p $EXTRACTLOOP_TMPDIR CRYPT=$(mktemp -d $EXTRACTLOOP_TMPDIR/XXX) CSV=$CRYPT.csv |