pmt: dont include new memoryTestFunction

This commit is contained in:
2025-08-13 09:42:37 +03:00
parent 23087966d6
commit d74f385a68
14 changed files with 96 additions and 67 deletions

View File

@@ -36,16 +36,16 @@ bool partitionSizeFunction::init(CLI::App &_app) {
->required()
->delimiter(',');
cmd->add_flag("--as-byte", asByte,
"Tell input size of partition list as byte.");
"Tell input size of partition list as byte.")->default_val(false);
cmd->add_flag("--as-kilobyte", asKiloBytes,
"Tell input size of partition list as kilobyte.");
"Tell input size of partition list as kilobyte.")->default_val(false);
cmd->add_flag("--as-megabyte", asMega,
"Tell input size of partition list as megabyte.");
"Tell input size of partition list as megabyte.")->default_val(false);
cmd->add_flag("--as-gigabyte", asGiga,
"Tell input size of partition list as gigabyte.");
"Tell input size of partition list as gigabyte.")->default_val(false);
cmd->add_flag("--only-size", onlySize,
"Tell input size of partition list as not printing multiple "
"and partition name.");
"and partition name.")->default_val(false);
return true;
}