ZTS: Use ECKSUM instead of EBADE in libzfs test
Linux defines ECKSUM as EBADE, FreeBSD defines it as EINTEGRITY. Test for ECKSUM instead of EBADE so we don't have to define EBADE for this test on FreeBSD. Reviewed-by: John Kennedy <john.kennedy@delphix.com> Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Ryan Moeller <ryan@iXsystems.com> Closes #9992
This commit is contained in:
parent
d1d65bb367
commit
b90b01cbc8
|
@ -556,7 +556,7 @@ test_recv_new(const char *dataset, int fd)
|
|||
fnvlist_add_boolean(optional, "resumable");
|
||||
fnvlist_add_uint64(optional, "action_handle", *action_handle);
|
||||
#endif
|
||||
IOC_INPUT_TEST(ZFS_IOC_RECV_NEW, dataset, required, optional, EBADE);
|
||||
IOC_INPUT_TEST(ZFS_IOC_RECV_NEW, dataset, required, optional, ECKSUM);
|
||||
|
||||
nvlist_free(props);
|
||||
nvlist_free(optional);
|
||||
|
|
Loading…
Reference in New Issue