mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-09 23:10:08 +00:00
2aec9b399b
Move the argument parsing tests excercising various numeric options (except 'virsh event') from 'virsh-optparse' to 'virshtest'. Signed-off-by: Peter Krempa <pkrempa@redhat.com> Reviewed-by: Ján Tomko <jtomko@redhat.com>
42 lines
1.4 KiB
Plaintext
42 lines
1.4 KiB
Plaintext
Test a regular numeric option
|
|
Non-numeric value
|
|
error: Numeric value 'abc' for <start> option is malformed or out of range
|
|
|
|
Numeric value with invalid suffix
|
|
error: Numeric value '42WB' for <start> option is malformed or out of range
|
|
|
|
Numeric value with valid suffix. Suffixes are not supported for
|
|
regular numeric options, so this value is rejected
|
|
error: Numeric value '42MB' for <start> option is malformed or out of range
|
|
|
|
Numeric value bigger than INT_MAX
|
|
error: Numeric value '2147483648' for <start> option is malformed or out of range
|
|
|
|
Negative numeric value. The value is not valid for the command
|
|
we are testing, but it has been parsed correctly
|
|
error: Invalid value for start CPU
|
|
|
|
Test a scaled numeric option
|
|
Non-numeric value
|
|
error: Scaled numeric value 'abc' for <size> option is malformed or out of range
|
|
|
|
Numeric value with invalid suffix
|
|
error: Scaled numeric value '42WB' for <size> option is malformed or out of range
|
|
error: invalid argument: unknown suffix 'WB'
|
|
|
|
Numeric value with valid suffix
|
|
|
|
Numeric value bigger than INT_MAX. No failure here because
|
|
scaled numeric values are unsigned long long
|
|
|
|
Negative numeric value
|
|
error: Scaled numeric value '-1' for <size> option is malformed or out of range
|
|
|
|
Zero. The value is not valid for the command were testing, but
|
|
it has been parsed correctly
|
|
error: Unable to change MaxMemorySize
|
|
error: memory in virDomainSetMemoryFlags must not be zero
|
|
|
|
Numeric value
|
|
|