Tests: convert tabs to 8 spaces

Signed-off-by: Ronnie Sahlberg <ronniesahlberg@gmail.com>
This commit is contained in:
Ronnie Sahlberg
2016-02-21 16:17:18 -08:00
parent 5a80c7b581
commit b4320bd76c
215 changed files with 13344 additions and 13344 deletions

View File

@@ -29,95 +29,95 @@
void
test_readcapacity16_protection(void)
{
logging(LOG_VERBOSE, LOG_BLANK_LINE);
logging(LOG_VERBOSE, "Test READCAPACITY16 Protection Information");
logging(LOG_VERBOSE, LOG_BLANK_LINE);
logging(LOG_VERBOSE, "Test READCAPACITY16 Protection Information");
CHECK_FOR_SBC;
CHECK_FOR_SBC;
if (rc16 == NULL) {
logging(LOG_NORMAL, "[SKIPPED] READCAPACITY16 is not implemented on this target.");
CU_PASS("READCAPACITY16 is not implemented.");
return;
}
if (rc16 == NULL) {
logging(LOG_NORMAL, "[SKIPPED] READCAPACITY16 is not implemented on this target.");
CU_PASS("READCAPACITY16 is not implemented.");
return;
}
if (!inq->protect) {
logging(LOG_VERBOSE, "This device does not support PI. "
"Verify that all relevant fields in READCAPACITY16 "
"are 0");
if (!inq->protect) {
logging(LOG_VERBOSE, "This device does not support PI. "
"Verify that all relevant fields in READCAPACITY16 "
"are 0");
logging(LOG_VERBOSE, "Verify that PROT_EN is 0");
if (rc16->prot_en) {
logging(LOG_VERBOSE, "[FAILED] PROT_EN is set but "
"the device does not claim support for "
"protection information in the standard "
"inquiry VPD.");
} else {
logging(LOG_VERBOSE, "[SUCCESS] PROT_EN is 0");
}
CU_ASSERT_EQUAL(rc16->prot_en, 0);
logging(LOG_VERBOSE, "Verify that PROT_EN is 0");
if (rc16->prot_en) {
logging(LOG_VERBOSE, "[FAILED] PROT_EN is set but "
"the device does not claim support for "
"protection information in the standard "
"inquiry VPD.");
} else {
logging(LOG_VERBOSE, "[SUCCESS] PROT_EN is 0");
}
CU_ASSERT_EQUAL(rc16->prot_en, 0);
logging(LOG_VERBOSE, "Verify that P_TYPE is 0");
if (rc16->p_type) {
logging(LOG_VERBOSE, "[FAILED] P_TYPE is non-zero but "
"the device does not claim support for "
"protection information in the standard "
"inquiry VPD.");
} else {
logging(LOG_VERBOSE, "[SUCCESS] P_TYPE is 0");
}
CU_ASSERT_EQUAL(rc16->p_type, 0);
logging(LOG_VERBOSE, "Verify that P_TYPE is 0");
if (rc16->p_type) {
logging(LOG_VERBOSE, "[FAILED] P_TYPE is non-zero but "
"the device does not claim support for "
"protection information in the standard "
"inquiry VPD.");
} else {
logging(LOG_VERBOSE, "[SUCCESS] P_TYPE is 0");
}
CU_ASSERT_EQUAL(rc16->p_type, 0);
logging(LOG_VERBOSE, "Verify that P_I_EXP is 0");
if (rc16->p_i_exp) {
logging(LOG_VERBOSE, "[FAILED] P_I_EXP is non-zero but "
"the device does not claim support for "
"protection information in the standard "
"inquiry VPD.");
} else {
logging(LOG_VERBOSE, "[SUCCESS] P_I_EXP is 0");
}
CU_ASSERT_EQUAL(rc16->p_i_exp, 0);
logging(LOG_VERBOSE, "Verify that P_I_EXP is 0");
if (rc16->p_i_exp) {
logging(LOG_VERBOSE, "[FAILED] P_I_EXP is non-zero but "
"the device does not claim support for "
"protection information in the standard "
"inquiry VPD.");
} else {
logging(LOG_VERBOSE, "[SUCCESS] P_I_EXP is 0");
}
CU_ASSERT_EQUAL(rc16->p_i_exp, 0);
return;
}
return;
}
logging(LOG_VERBOSE, "This device supports PI. "
"Verify that all relevant fields are sane");
if (!rc16->prot_en) {
logging(LOG_VERBOSE, "Protection is not enabled. Verify "
"that all relevant fields are zero");
logging(LOG_VERBOSE, "This device supports PI. "
"Verify that all relevant fields are sane");
if (!rc16->prot_en) {
logging(LOG_VERBOSE, "Protection is not enabled. Verify "
"that all relevant fields are zero");
logging(LOG_VERBOSE, "Verify that P_TYPE is 0");
if (rc16->p_type) {
logging(LOG_VERBOSE, "[FAILED] P_TYPE is non-zero but "
"protection information is not enabled.");
} else {
logging(LOG_VERBOSE, "[SUCCESS] P_TYPE is 0");
}
CU_ASSERT_EQUAL(rc16->p_type, 0);
logging(LOG_VERBOSE, "Verify that P_TYPE is 0");
if (rc16->p_type) {
logging(LOG_VERBOSE, "[FAILED] P_TYPE is non-zero but "
"protection information is not enabled.");
} else {
logging(LOG_VERBOSE, "[SUCCESS] P_TYPE is 0");
}
CU_ASSERT_EQUAL(rc16->p_type, 0);
logging(LOG_VERBOSE, "Verify that P_I_EXP is 0");
if (rc16->p_i_exp) {
logging(LOG_VERBOSE, "[FAILED] P_I_EXP is non-zero but "
"protection information is not enabled");
} else {
logging(LOG_VERBOSE, "[SUCCESS] P_I_EXP is 0");
}
CU_ASSERT_EQUAL(rc16->p_i_exp, 0);
logging(LOG_VERBOSE, "Verify that P_I_EXP is 0");
if (rc16->p_i_exp) {
logging(LOG_VERBOSE, "[FAILED] P_I_EXP is non-zero but "
"protection information is not enabled");
} else {
logging(LOG_VERBOSE, "[SUCCESS] P_I_EXP is 0");
}
CU_ASSERT_EQUAL(rc16->p_i_exp, 0);
return;
}
return;
}
logging(LOG_VERBOSE, "Protection is enabled. Verify "
"that all relevant fields are sane");
switch (rc16->p_type) {
case 0:
case 1:
case 2:
break;
default:
logging(LOG_VERBOSE, "[FAILED] P_TYPE is invalid. Must be "
"0,1,2 but was %d", rc16->p_type);
CU_FAIL("P_TYPE is invalid");
}
logging(LOG_VERBOSE, "Protection is enabled. Verify "
"that all relevant fields are sane");
switch (rc16->p_type) {
case 0:
case 1:
case 2:
break;
default:
logging(LOG_VERBOSE, "[FAILED] P_TYPE is invalid. Must be "
"0,1,2 but was %d", rc16->p_type);
CU_FAIL("P_TYPE is invalid");
}
}