aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2023-01-24 10:23:24 +0100
committerEgor Tensin <Egor.Tensin@gmail.com>2023-01-24 10:23:24 +0100
commit027f691bbb359845d9c838d70039ce710dd74e59 (patch)
tree9fbc176cfb9a267e130ead6903a7f77f63be81c0
parentos.sh: no need to use uname here (diff)
downloadconfig-links-027f691bbb359845d9c838d70039ce710dd74e59.tar.gz
config-links-027f691bbb359845d9c838d70039ce710dd74e59.zip
test: fix macOS runs
-rwxr-xr-xtest/test.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/test.sh b/test/test.sh
index f2abfde..05c5d65 100755
--- a/test/test.sh
+++ b/test/test.sh
@@ -32,7 +32,9 @@ new_test() {
echo ======================================================================
echo "New test: $test_name"
- test_root_dir="$( mktemp --directory )"
+ test_root_dir="$( mktemp -d )"
+ # mktemp returns /var/..., which is actually in /private/var/... on macOS.
+ test_root_dir="$( readlink -e -- "$test_root_dir" )"
test_src_dir="$test_root_dir/$src_dir_name"
test_dest_dir="$test_root_dir/$dest_dir_name"
test_alt_dest_dir="$test_root_dir/$alt_dest_dir_name"