libvirt/tests/virshtestdata/numeric-parsing.in
Peter Krempa 2aec9b399b virshtest: Adapt numeric option arg handling tests from 'virsh-optparse'
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>
2024-04-02 14:24:30 +02:00

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