Skip to content

Commit f0651fb

Browse files
committed
ZTS: functional/mount scripts are not removing /var/tmp/testdir.X directories
cleanup.ksh is assuming we have TESTDIRS set. Signed-off-by: Toomas Soome <[email protected]>
1 parent 25238ba commit f0651fb

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/zfs-tests/tests/functional/mount/cleanup.ksh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,14 @@
2727

2828
#
2929
# Copyright (c) 2013, 2016 by Delphix. All rights reserved.
30+
# Copyright 2025 MNX Cloud, Inc.
3031
#
3132

3233
. $STF_SUITE/include/libtest.shlib
3334

3435
log_must destroy_pool $TESTPOOL
3536

36-
for dir in $TESTDIRS; do
37+
for i in 1 2 3; do
38+
dir=$TESTDIR.$i
3739
rm -rf $dir
3840
done

0 commit comments

Comments
 (0)