From 8c4429408716d9890a98a48c246d616dbfea7e31 Mon Sep 17 00:00:00 2001 From: Jakob Unterwurzacher Date: Sun, 6 Oct 2019 21:50:27 +0200 Subject: tests: use /var/tmp by default On Fedora, /tmp is tmpfs, which behaves differently than ext4 (inode numbers are never reused, for example). Use /var/tmp, which is ext4 on Fedora, to get a more realistic test environment. This also allows us to drop the xattr workaround. --- test.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test.bash') diff --git a/test.bash b/test.bash index 8cbbfb0..8cc40bc 100755 --- a/test.bash +++ b/test.bash @@ -1,7 +1,7 @@ #!/bin/bash if [[ -z $TMPDIR ]]; then - TMPDIR=/tmp + TMPDIR=/var/tmp else echo "Using TMPDIR=$TMPDIR" fi -- cgit v1.2.3