With the removal of BLK-mode support, test/libndctl will fail to detect the JEDEC format on the nfit_test bus. Report + skip that check rather than fail the test when that happens.
Signed-off-by: Dan Williams <[email protected]> --- test/libndctl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/libndctl.c b/test/libndctl.c index 0d6b9dd5b04b..aa624289c708 100644 --- a/test/libndctl.c +++ b/test/libndctl.c @@ -2536,7 +2536,7 @@ static int check_dimms(struct ndctl_bus *bus, struct dimm *dimms, int n, fprintf(stderr, "dimm%d expected formats: %d got: %d\n", i, dimms[i].formats, ndctl_dimm_get_formats(dimm)); - return -ENXIO; + fprintf(stderr, "continuing...\n"); } for (j = 0; j < dimms[i].formats; j++) { if (ndctl_dimm_get_formatN(dimm, j) != dimms[i].format[j]) { @@ -2544,7 +2544,7 @@ static int check_dimms(struct ndctl_bus *bus, struct dimm *dimms, int n, "dimm%d expected format[%d]: %d got: %d\n", i, j, dimms[i].format[j], ndctl_dimm_get_formatN(dimm, j)); - return -ENXIO; + fprintf(stderr, "continuing...\n"); } } }
