Skip to content

Commit

Permalink
ZTS: Fix path to /dev/null in nopwrite_recsize
Browse files Browse the repository at this point in the history
Don't direct stdout and stderr of dd to $TEST_BASE_DIR/null,
direct it to /dev/null.

Reviewed-by: Kjeld Schouten <[email protected]>
Reviewed-by: Brian Behlendorf <[email protected]>
Reviewed-by: George Melikov <[email protected]>
Signed-off-by: Ryan Moeller <[email protected]>
Closes #11026
  • Loading branch information
Ryan Moeller authored Oct 8, 2020
1 parent a8fc1b8 commit 84cfe5d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ log_must zfs clone $origin@a $origin/clone
for rs in 512 1024 2048 4096 8192 16384 32768 65536 131072 ; do
log_must zfs set recsize=$rs $origin/clone
dd if=/$TESTDIR/file of=/$TESTDIR/clone/file bs=1024k count=$MEGS \
conv=notrunc > $TEST_BASE_DIR/null 2>&1 || log_fail "dd failed."
conv=notrunc >/dev/null 2>&1 || log_fail "dd failed."
log_must verify_nopwrite $origin $origin@a $origin/clone
done

Expand Down

0 comments on commit 84cfe5d

Please sign in to comment.