On a Friday in 2024, Peter Krempa wrote:
Move the argument parsing tests excercising various numeric options
(except 'virsh event') from 'virsh-optparse' to 'virshtest'.
Signed-off-by: Peter Krempa <pkrempa(a)redhat.com>
---
tests/virsh-optparse | 105 ------------------------
tests/virshtest.c | 1 +
tests/virshtestdata/numeric-parsing.in | 43 ++++++++++
tests/virshtestdata/numeric-parsing.out | 12 +++
4 files changed, 56 insertions(+), 105 deletions(-)
create mode 100644 tests/virshtestdata/numeric-parsing.in
create mode 100644 tests/virshtestdata/numeric-parsing.out
diff --git a/tests/virshtest.c b/tests/virshtest.c
index 453b1d7a9e..37634a68a2 100644
--- a/tests/virshtest.c
+++ b/tests/virshtest.c
@@ -201,6 +201,7 @@ mymain(void)
/* comprehensive coverage of argument assignment */
DO_TEST_SCRIPT("argument-assignment", NULL, VIRSH_DEFAULT, "-k0",
"-d0");
DO_TEST_SCRIPT("snapshot-create-args", NULL, VIRSH_DEFAULT,
"-q");
+ DO_TEST_SCRIPT("numeric-parsing", NULL, VIRSH_DEFAULT, "-q");
Please drop the "-q" here, to make the output file human-readable.
VIR_FREE(custom_uri);
return ret == 0 ? EXIT_SUCCESS : EXIT_FAILURE;
Reviewed-by: Ján Tomko <jtomko(a)redhat.com>
Jano