Displaying 2 results from an estimated 2 matches for "2cbd4d1b1".
2018 Jun 27
5
[PATCH 0/3] test-tool: small options-related improvements
*** BLURB HERE ***
Pino Toscano (3):
test-tool: implement --short-options & --long-options
test-tool: add a documentation test
bash: add a completion script for libguestfs-test-tool
.gitignore | 1 +
bash/Makefile.am | 3 ++-
bash/virt-v2v-copy-to-local | 6 +++++
test-tool/Makefile.am
2018 Jun 27
0
[PATCH 1/3] test-tool: implement --short-options & --long-options
While not useful per-se, it will help checking the available options.
---
test-tool/Makefile.am | 5 ++++-
test-tool/test-tool.c | 9 ++++++++-
2 files changed, 12 insertions(+), 2 deletions(-)
diff --git a/test-tool/Makefile.am b/test-tool/Makefile.am
index bf4f5a843..2cbd4d1b1 100644
--- a/test-tool/Makefile.am
+++ b/test-tool/Makefile.am
@@ -22,11 +22,14 @@ EXTRA_DIST = libguestfs-test-tool.pod
bin_PROGRAMS = libguestfs-test-tool
man_MANS = libguestfs-test-tool.1
-libguestfs_test_tool_SOURCES = test-tool.c
+libguestfs_test_tool_SOURCES = \
+ ../common/options/displa...