mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-05 12:51:12 +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>
44 lines
1.1 KiB
Plaintext
44 lines
1.1 KiB
Plaintext
echo Test a regular numeric option
|
|
|
|
echo Non-numeric value
|
|
cpu-stats test --start abc
|
|
|
|
echo Numeric value with invalid suffix
|
|
cpu-stats test --start 42WB
|
|
|
|
echo Numeric value with valid suffix. Suffixes are not supported for
|
|
echo regular numeric options, so this value is rejected
|
|
cpu-stats test --start 42MB
|
|
|
|
echo Numeric value bigger than INT_MAX
|
|
cpu-stats test --start 2147483648
|
|
|
|
echo Negative numeric value. The value is not valid for the command
|
|
echo we are testing, but it has been parsed correctly
|
|
cpu-stats test --start -1
|
|
|
|
echo Test a scaled numeric option
|
|
|
|
echo Non-numeric value
|
|
setmaxmem test abc
|
|
|
|
echo Numeric value with invalid suffix
|
|
setmaxmem test 42WB
|
|
|
|
echo Numeric value with valid suffix
|
|
setmaxmem test 42MB --config
|
|
|
|
echo Numeric value bigger than INT_MAX. No failure here because
|
|
echo scaled numeric values are unsigned long long
|
|
setmaxmem test 2147483648 --config
|
|
|
|
echo Negative numeric value
|
|
setmaxmem test -1
|
|
|
|
echo Zero. The value is not valid for the command were testing, but
|
|
echo it has been parsed correctly
|
|
setmaxmem test 0
|
|
|
|
echo Numeric value
|
|
setmaxmem test 42 --config
|