spelling fixes: eventhough, shoudl, asyncronous, maxium, implicity

These changes are carried in debian for a long time, some since 2016.
The last one (implicity) is new in 1.20.0.

Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
This commit is contained in:
Michael Tokarev
2024-02-05 20:55:39 +03:00
committed by Bart Van Assche
parent d960e6253c
commit 6e0206c135
6 changed files with 7 additions and 7 deletions

View File

@@ -95,7 +95,7 @@ test_compareandwrite_miscompare(void)
for (j = 0; j < i * block_size; j++) {
if (scratch[j] != 'A') {
logging(LOG_VERBOSE, "[FAILED] Data changed "
"eventhough there was a miscompare");
"even though there was a miscompare");
CU_FAIL("Block was written to");
return;
}
@@ -151,7 +151,7 @@ test_compareandwrite_miscompare(void)
for (j = 0; j < i * block_size; j++) {
if (scratch[j] != 'A') {
logging(LOG_VERBOSE, "[FAILED] Data changed "
"eventhough there was a miscompare");
"even though there was a miscompare");
CU_FAIL("Block was written to");
return;
}

View File

@@ -161,7 +161,7 @@ check_unmap(void)
lbas->descriptors[i].lba + lbas->descriptors[i].num_blocks);
if (lbas->descriptors[i].provisioning == SCSI_PROVISIONING_TYPE_MAPPED) {
logging(LOG_VERBOSE, "[FAILED] Descriptor %d is MAPPED."
"All descriptors shoudl be either DEALLOCATED "
"All descriptors should be either DEALLOCATED "
"or ANCHORED after SANITIZE", i);
CU_FAIL("[FAILED] LBA status descriptor is MAPPED.");
}

View File

@@ -58,7 +58,7 @@ test_sanitize_reset(void)
return;
}
logging(LOG_VERBOSE, "Send an asyncronous SANITIZE to the target.");
logging(LOG_VERBOSE, "Send an asynchronous SANITIZE to the target.");
data.size = block_size + 4;
data.data = alloca(data.size);
memset(&data.data[4], 0, block_size);