Skip to content

Commit

Permalink
Fix ZFS Test Suite failures caused by ksh brace expansion feature
Browse files Browse the repository at this point in the history
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 openzfs#5669
Closes openzfs#5743
  • Loading branch information
loli10K authored and wli5 committed Feb 27, 2017
1 parent 4ddeb71 commit d418d0b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
4 changes: 1 addition & 3 deletions tests/runfiles/linux.run
Original file line number Diff line number Diff line change
Expand Up @@ -118,10 +118,8 @@ tests = ['zfs_get_001_pos', 'zfs_get_002_pos', 'zfs_get_003_pos',
'zfs_get_005_neg', 'zfs_get_007_neg', 'zfs_get_008_pos',
'zfs_get_009_pos', 'zfs_get_010_neg']

# DISABLED:
# zfs_inherit_003_pos - https://github.com/zfsonlinux/zfs/issues/5669
[tests/functional/cli_root/zfs_inherit]
tests = ['zfs_inherit_001_neg', 'zfs_inherit_002_neg']
tests = ['zfs_inherit_001_neg', 'zfs_inherit_002_neg', 'zfs_inherit_003_pos']

# DISABLED:
# zfs_mount_006_pos - https://github.com/zfsonlinux/zfs/issues/4990
Expand Down
4 changes: 2 additions & 2 deletions tests/zfs-tests/include/libtest.shlib
Original file line number Diff line number Diff line change
Expand Up @@ -1035,7 +1035,7 @@ function get_prop # property dataset
return 1
fi

$ECHO $prop_val
$ECHO "$prop_val"
return 0
}

Expand All @@ -1062,7 +1062,7 @@ function get_pool_prop # property pool
return 1
fi

$ECHO $prop_val
$ECHO "$prop_val"
return 0
}

Expand Down

0 comments on commit d418d0b

Please sign in to comment.