diff options
author | Tim Chase <[email protected]> | 2018-06-16 11:21:46 -0500 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2018-06-26 09:58:05 -0700 |
commit | 88eaf610d9c7056f0946e5090cba1e6288ff2b70 (patch) | |
tree | a60d3b68efe3bb68b173d836f75e7f496ad0373c /tests/zfs-tests | |
parent | a8577bdb32e091645df901d8501e44ef50748389 (diff) |
Use "eval" in history_002_pos for log_must
Otherwise the output is consumed by the output redirection.
Reviewed-by: Serapheim Dimitropoulos <[email protected]>
Reviewed-by: Brian Behlendorf <[email protected]>
Signed-off-by: Tim Chase <[email protected]>
Closes #7570
Diffstat (limited to 'tests/zfs-tests')
-rwxr-xr-x | tests/zfs-tests/tests/functional/history/history_002_pos.ksh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/zfs-tests/tests/functional/history/history_002_pos.ksh b/tests/zfs-tests/tests/functional/history/history_002_pos.ksh index 979f06076..af69668fb 100755 --- a/tests/zfs-tests/tests/functional/history/history_002_pos.ksh +++ b/tests/zfs-tests/tests/functional/history/history_002_pos.ksh @@ -143,8 +143,8 @@ run_and_verify "zfs snapshot $fssnap2" run_and_verify "zfs snapshot $volsnap2" # Send isn't logged... -log_must zfs send -i $fssnap $fssnap2 > $tmpfile -log_must zfs send -i $volsnap $volsnap2 > $tmpfile2 +log_must eval "zfs send -i $fssnap $fssnap2 > $tmpfile" +log_must eval "zfs send -i $volsnap $volsnap2 > $tmpfile2" # Verify that's true zpool history $TESTPOOL | grep 'zfs send' >/dev/null 2>&1 && \ log_fail "'zfs send' found in history of \"$TESTPOOL\"" |