diff options
author | LOLi <[email protected]> | 2017-02-06 19:08:10 +0100 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2017-02-06 10:08:10 -0800 |
commit | 582cc0141699991da38ba8bfc8eb938ecb2d9856 (patch) | |
tree | 13044c9256299d4f1fab08419274735ce979d605 /tests/zfs-tests/include/libtest.shlib | |
parent | 298ec40b6d9edcbde7b1fbbf172bd05be0eb9b97 (diff) |
Fix ZFS Test Suite failures caused by ksh brace expansion feature
Reviewed-by: Brian Behlendorf <[email protected]>
Reviewed-by: George Melikov <[email protected]>
Reviewed-by: Giuseppe Di Natale <[email protected]>
Signed-off-by: loli10K <[email protected]>
Closes #5669
Closes #5743
Diffstat (limited to 'tests/zfs-tests/include/libtest.shlib')
-rw-r--r-- | tests/zfs-tests/include/libtest.shlib | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/zfs-tests/include/libtest.shlib b/tests/zfs-tests/include/libtest.shlib index b5f8b1291..4127d35a8 100644 --- a/tests/zfs-tests/include/libtest.shlib +++ b/tests/zfs-tests/include/libtest.shlib @@ -1035,7 +1035,7 @@ function get_prop # property dataset return 1 fi - $ECHO $prop_val + $ECHO "$prop_val" return 0 } @@ -1062,7 +1062,7 @@ function get_pool_prop # property pool return 1 fi - $ECHO $prop_val + $ECHO "$prop_val" return 0 } |