Skip to content

Commit

Permalink
ZTS: Avoid unset $tmpdir in redacted_panic
Browse files Browse the repository at this point in the history
The redacted_send tests make use of a $tmpdir variable, except in
redacted_send/redacted_panic the variable is never defined.

Use $TEST_BASE_DIR instead.

Clean up the stream file after the test.

Reviewed-by: John Kennedy <john.kennedy@delphix.com>
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: Ryan Moeller <ryan@iXsystems.com>
Closes #12455
  • Loading branch information
Ryan Moeller authored and behlendorf committed Aug 31, 2021
1 parent de669cf commit bed2062
Showing 1 changed file with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,15 @@ typeset ds_name="panic"
typeset sendfs="$POOL/$ds_name"
typeset recvfs="$POOL2/$ds_name"
typeset clone="$POOL/${ds_name}_clone"
typeset stream=$(mktemp $tmpdir/stream.XXXX)
typeset stream=$(mktemp $TEST_BASE_DIR/stream.XXXX)

log_onexit redacted_cleanup $sendfs $recvfs
function cleanup
{
redacted_cleanup $sendfs $recvfs
rm -f $stream
}

log_onexit cleanup

log_must zfs create -o recsize=8k $sendfs
log_must dd if=/dev/urandom of=/$sendfs/file bs=1024k count=2048
Expand Down

0 comments on commit bed2062

Please sign in to comment.