Closed
Description
System information
Type | Version/Name |
---|---|
Distribution Name | all |
Architecture | all |
OpenZFS Version | trunk |
Describe the problem you're observing
If you observe L247 and L248 of cmp_ds_prop
:
zfs/tests/zfs-tests/tests/functional/rsend/rsend.kshlib
Lines 219 to 257 in 56a0699
you'll see that it truncates the intermediate files, then does preprocessing on them; this, for obvious reasons leaves them empty, which means cmp_ds_prop
is diff /dev/null /dev/null
, or a very convoluted way of alias cmp_ds_prop=:
.
Funnily enough, cmp_ds_subs
, above, uses a different set of intermediates for before/after.
This makes rsend
-group tests send-c_props
, rsend_012_pos
, and rsend_011_pos
(so – all which use it except rsend_008_pos
) be false-positives.
I already have this fixed but need an issue number to ref against.