diff --git a/test-tool/test_read16_simple.c b/test-tool/test_read16_simple.c index 2ffdb4c..04746ee 100644 --- a/test-tool/test_read16_simple.c +++ b/test-tool/test_read16_simple.c @@ -43,7 +43,6 @@ test_read16_simple(void) CU_PASS("READ16 is not implemented and no SBC-3 support claimed."); return; } - CU_ASSERT_EQUAL(ret, 0); } diff --git a/test-tool/test_readcapacity16_alloclen.c b/test-tool/test_readcapacity16_alloclen.c index fa8a065..17b275e 100644 --- a/test-tool/test_readcapacity16_alloclen.c +++ b/test-tool/test_readcapacity16_alloclen.c @@ -37,8 +37,8 @@ test_readcapacity16_alloclen(void) for (i = 0; i < 16; i++) { ret = readcapacity16(iscsic, tgt_lun, i); if (ret == -2) { - logging(LOG_NORMAL, "[SKIPPED] READ16 is not implemented on this target and it does not claim SBC-3 support."); - CU_PASS("READ16 is not implemented and no SBC-3 support claimed."); + logging(LOG_NORMAL, "[SKIPPED] READCAPACITY16 is not implemented on this target and it does not claim SBC-3 support."); + CU_PASS("READCAPACITY16 is not implemented and no SBC-3 support claimed."); return; } CU_ASSERT_EQUAL(ret, 0); diff --git a/test-tool/test_readcapacity16_simple.c b/test-tool/test_readcapacity16_simple.c index ce478fa..2b541e1 100644 --- a/test-tool/test_readcapacity16_simple.c +++ b/test-tool/test_readcapacity16_simple.c @@ -37,8 +37,8 @@ test_readcapacity16_simple(void) ret = readcapacity16(iscsic, tgt_lun, 16); if (ret == -2) { - logging(LOG_NORMAL, "[SKIPPED] READ16 is not implemented on this target and it does not claim SBC-3 support."); - CU_PASS("READ16 is not implemented and no SBC-3 support claimed."); + logging(LOG_NORMAL, "[SKIPPED] READCAPACITY16 is not implemented on this target and it does not claim SBC-3 support."); + CU_PASS("READCAPACITY16 is not implemented and no SBC-3 support claimed."); return; } CU_ASSERT_EQUAL(ret, 0);