Skip to content

Commit

Permalink
ZTS: Fix 'could not unmount datasets' on Alma 9
Browse files Browse the repository at this point in the history
Many tests are failing on AlmaLinux 9 because ZTS could not destroy the
pool in cleanup.  This was due to $PWD being set to '.' instead of the
expected full path.  This patch sets $PWD to the full path.

Signed-off-by: Tony Hutter <hutter2@llnl.gov>
  • Loading branch information
tonyhutter committed Nov 20, 2023
1 parent cd67bc0 commit d6033a8
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tests/zfs-tests/include/libtest.shlib
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,12 @@
. ${STF_SUITE}/include/math.shlib
. ${STF_SUITE}/include/blkdev.shlib

# On AlmaLinux 9 we will see $PWD = '.' instead of the full path. This causes
# some tests to fail. Fix it up here.
if [ "$PWD" = "." ] ; then
PWD="$(readlink -f $PWD)"
fi

#
# Apply constrained path when available. This is required since the
# PATH may have been modified by sudo's secure_path behavior.
Expand Down

0 comments on commit d6033a8

Please sign in to comment.