diff --git a/test-tool/0223_write16_0blocks.c b/test-tool/0223_write16_0blocks.c index be02537..f6d5aa4 100644 --- a/test-tool/0223_write16_0blocks.c +++ b/test-tool/0223_write16_0blocks.c @@ -111,7 +111,7 @@ int T0223_write16_0blocks(const char *initiator, const char *url) } if (task->status == SCSI_STATUS_GOOD) { printf("[FAILED]\n"); - printf("Write16 command: Should fail when reading 0blocks beyond end\n"); + printf("Write16 command: Should fail when writing 0blocks beyond end\n"); ret = -1; scsi_free_scsi_task(task); goto finished; diff --git a/test-tool/0224_write16_beyondeol.c b/test-tool/0224_write16_beyondeol.c index 8aa4fd2..12e0713 100644 --- a/test-tool/0224_write16_beyondeol.c +++ b/test-tool/0224_write16_beyondeol.c @@ -70,7 +70,7 @@ int T0224_write16_beyondeol(const char *initiator, const char *url) ret = 0; /* read 1 - 256 blocks beyond the end of the device */ - printf("Reading 1-256 blocks beyond end-of-device ... "); + printf("Writing 1-256 blocks beyond end-of-device ... "); for (i = 2; i <= 257; i++) { task = iscsi_write16_sync(iscsi, lun, num_blocks, data, i * block_size, block_size, 0, 0, 0, 0, 0); if (task == NULL) { @@ -81,7 +81,7 @@ int T0224_write16_beyondeol(const char *initiator, const char *url) } if (task->status == SCSI_STATUS_GOOD) { printf("[FAILED]\n"); - printf("Write16 command should fail when reading beyond end of device\n"); + printf("Write16 command should fail when writing beyond end of device\n"); ret = -1; scsi_free_scsi_task(task); goto finished; diff --git a/test-tool/0233_write12_0blocks.c b/test-tool/0233_write12_0blocks.c index db76ef9..78c27e3 100644 --- a/test-tool/0233_write12_0blocks.c +++ b/test-tool/0233_write12_0blocks.c @@ -111,7 +111,7 @@ int T0233_write12_0blocks(const char *initiator, const char *url) } if (task->status == SCSI_STATUS_GOOD) { printf("[FAILED]\n"); - printf("Write12 command: Should fail when reading 0blocks beyond end\n"); + printf("Write12 command: Should fail when writing 0blocks beyond end\n"); ret = -1; scsi_free_scsi_task(task); goto finished; diff --git a/test-tool/0234_write12_beyondeol.c b/test-tool/0234_write12_beyondeol.c index 4400231..31195b9 100644 --- a/test-tool/0234_write12_beyondeol.c +++ b/test-tool/0234_write12_beyondeol.c @@ -70,7 +70,7 @@ int T0234_write12_beyondeol(const char *initiator, const char *url) ret = 0; /* read 1 - 256 blocks beyond the end of the device */ - printf("Reading 1-256 blocks beyond end-of-device ... "); + printf("Writing 1-256 blocks beyond end-of-device ... "); for (i = 2; i <= 257; i++) { task = iscsi_write12_sync(iscsi, lun, num_blocks, data, i * block_size, block_size, 0, 0, 0, 0, 0); if (task == NULL) { @@ -81,7 +81,7 @@ int T0234_write12_beyondeol(const char *initiator, const char *url) } if (task->status == SCSI_STATUS_GOOD) { printf("[FAILED]\n"); - printf("Write12 command should fail when reading beyond end of device\n"); + printf("Write12 command should fail when writing beyond end of device\n"); ret = -1; scsi_free_scsi_task(task); goto finished;