MT#56374 add missing options to --help

Change-Id: Ied20cdf5ed28d62b420c44a6bf9f9ba6de4d9262
pull/1722/head
Richard Fuchs 2 years ago
parent 8d6e649e7e
commit 6305255d04

@ -1521,6 +1521,7 @@ static void options(int *argc, char ***argv) {
.arg = G_OPTION_ARG_INT,
.arg_data = &max_cpu,
.description = "Automated test up to x% CPU",
.arg_description = "INT",
},
{
.long_name = "system-cpu",
@ -1534,18 +1535,21 @@ static void options(int *argc, char ***argv) {
.arg = G_OPTION_ARG_INT,
.arg_data = &break_in,
.description = "Break-in time in ms before measuring for automated tests",
.arg_description = "INT",
},
{
.long_name = "measure-time",
.arg = G_OPTION_ARG_INT,
.arg_data = &measure_time,
.description = "Duration of automated tests in ms",
.arg_description = "INT",
},
{
.long_name = "repeats",
.arg = G_OPTION_ARG_INT,
.arg_data = &repeats,
.description = "Number of times to repeat automated test",
.arg_description = "INT",
},
{
.long_name = "cpu-freq",
@ -1558,6 +1562,7 @@ static void options(int *argc, char ***argv) {
.arg = G_OPTION_ARG_INT,
.arg_data = &freq_granularity,
.description = "Granularity in ms for measuring CPU frequencies",
.arg_description = "INT",
},
{ NULL, }
};

Loading…
Cancel
Save