TEST-TOOL: Add a --info argument to print more detailed infor what a test does

Signed-off-by: Ronnie Sahlberg <ronniesahlberg@gmail.com>
This commit is contained in:
Ronnie Sahlberg
2012-06-03 09:08:12 +10:00
parent 9e09a46ddd
commit 288fd5e9fe
48 changed files with 600 additions and 320 deletions

View File

@@ -20,7 +20,7 @@
#include "scsi-lowlevel.h"
#include "iscsi-test.h"
int T0220_write16_simple(const char *initiator, const char *url)
int T0220_write16_simple(const char *initiator, const char *url, int data_loss, int show_info)
{
struct iscsi_context *iscsi;
struct scsi_task *task;
@@ -30,6 +30,16 @@ int T0220_write16_simple(const char *initiator, const char *url)
uint64_t num_blocks;
unsigned char data[512 * 256];
printf("0220_write16_simple:\n");
printf("===================\n");
if (show_info) {
printf("Test basic WRITE16 functionality.\n");
printf("1, Verify we can write the first 1-256 blocks of the LUN.\n");
printf("2, Verify we can write the last 1-256 blocks of the LUN.\n");
printf("\n");
return 0;
}
iscsi = iscsi_context_login(initiator, url, &lun);
if (iscsi == NULL) {
printf("Failed to login to target\n");