diff --git a/perf-tester/main.c b/perf-tester/main.c index 3a69804c4..916744ebf 100644 --- a/perf-tester/main.c +++ b/perf-tester/main.c @@ -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, } };