Skip to content

Commit c76fa15

Browse files
committed
TOOL/PERFTEST: Differentiate wakeup feature and extra info options
1 parent 3842a65 commit c76fa15

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/tools/perf/perftest_params.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ static void usage(const struct perftest_context *ctx, const char *program)
106106
printf(" -N use numeric formatting (thousands separator)\n");
107107
printf(" -f print only final numbers\n");
108108
printf(" -v print CSV-formatted output\n");
109-
printf(" -I print extra information about the operation\n");
109+
printf(" -X print extra information about the operation\n");
110110
printf(" -q do not print error messages\n");
111111
printf("\n");
112112
printf(" UCT only:\n");
@@ -649,7 +649,7 @@ ucs_status_t parse_opts(struct perftest_context *ctx, int mpi_initialized,
649649

650650
optind = 1;
651651
while ((c = getopt_long(argc, argv,
652-
"p:b:6NfvIc:P:hK:g:G:k" TEST_PARAMS_ARGS,
652+
"p:b:6NfvXc:P:hK:g:G:k" TEST_PARAMS_ARGS,
653653
TEST_PARAMS_ARGS_LONG, NULL)) != -1) {
654654
switch (c) {
655655
case 'p':
@@ -675,7 +675,7 @@ ucs_status_t parse_opts(struct perftest_context *ctx, int mpi_initialized,
675675
case 'v':
676676
ctx->flags |= TEST_FLAG_PRINT_CSV;
677677
break;
678-
case 'I':
678+
case 'X':
679679
ctx->flags |= TEST_FLAG_PRINT_EXTRA_INFO;
680680
break;
681681
case 'c':

0 commit comments

Comments
 (0)