search for: enable_gnulib_test

Displaying 6 results from an estimated 6 matches for "enable_gnulib_test".

Did you mean: enable_gnulib_tests
2019 Sep 12
1
[p2v PATCH] tests: require virt-v2v for functional tests
...hose tests. Reported by Rich. --- m4/p2v-tests.m4 | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/m4/p2v-tests.m4 b/m4/p2v-tests.m4 index f679bc4..7de356d 100644 --- a/m4/p2v-tests.m4 +++ b/m4/p2v-tests.m4 @@ -25,11 +25,12 @@ AC_ARG_ENABLE([gnulib-tests], AM_CONDITIONAL([ENABLE_GNULIB_TESTS],[test "x$ENABLE_GNULIB_TESTS" = "xyes"]) AC_MSG_RESULT([$ENABLE_GNULIB_TESTS]) -dnl Check libguestfs tools (needed for create the test images). +dnl Check libguestfs tools. AC_CHECK_PROG([GUESTFISH],[guestfish],[guestfish],[no]) AC_CHECK_PROG([VIRT_BUILDER],[virt-builder]...
2014 Mar 07
2
[PATCH] Disable gnulib tests by default
...git a/Makefile.am b/Makefile.am index b47a572..020628e 100644 --- a/Makefile.am +++ b/Makefile.am @@ -20,7 +20,10 @@ include $(top_srcdir)/common-rules.mk ACLOCAL_AMFLAGS = -I m4 # Gnulib - must be built and tested before the library. -SUBDIRS = gnulib/lib gnulib/tests +SUBDIRS = gnulib/lib +if ENABLE_GNULIB_TESTS +SUBDIRS += gnulib/tests +endif # Basic source for the library. SUBDIRS += tests/data generator src examples po diff --git a/configure.ac b/configure.ac index afc6718..97c2c70 100644 --- a/configure.ac +++ b/configure.ac @@ -1553,6 +1553,14 @@ dnl For search paths. AC_DEFINE_UNQUOTED([PATH_SE...
2019 Jul 11
1
[p2v PATCH] Add bash completion scripts
...-12,6 +12,8 @@ Makefile.in /about-authors.c /aclocal.m4 /autom4te.cache/ +/bash/virt-p2v-make-kickstart +/bash/virt-p2v-make-kiwi /blank-part.img /build-aux/ /config.c diff --git a/Makefile.am b/Makefile.am index ac7e62f..2d0178c 100644 --- a/Makefile.am +++ b/Makefile.am @@ -24,6 +24,9 @@ if ENABLE_GNULIB_TESTS SUBDIRS += gnulib/tests endif +# bash-completion +SUBDIRS += bash + EXTRA_DIST = \ $(BUILT_SOURCES) \ $(TESTS) $(LIBGUESTFS_TESTS) $(SLOW_TESTS) \ diff --git a/bash/Makefile.am b/bash/Makefile.am new file mode 100644 index 0000000..2a59f75 --- /dev/null +++ b/bash/Makefile.am @@ -0,0 +1,6...
2019 Jul 09
7
[PATCH 0/5] Split virt-p2v in own repository
Hi, as it was already discussed on this list, here it is my attempt in splitting virt-p2v in an own repository. Sadly there are things that must be copied from libguestfs, as it cannot be avoided. The approach taken was to run a script (will send separately) to just get the "p2v" subdirectory with its history as own repository, and then add in few followup commits all the bits needed
2015 Oct 29
16
[PATCH 00/16] Refactoring of configure.ac and guestfs.pod
Two (not related to each other) refactorings: Patches 1-12 split configure.ac into smaller files using the m4_include mechanism. Patches 13-15 split out parts of guestfs.pod (ie. guestfs(3)) into three new manual pages: guestfs-hacking(3) - how to extend and contribute to libguestfs guestfs-internals(3) - architecture and internals guestfs-security(3) - security and CVEs Patch 16 is a
2019 Jul 11
5
[p2v PATCH 0/4] More imports and fixes
See individual patches for details. Pino Toscano (4): Add valgrind suppression file podwrapper: the tools here start with p2v Import some internal documentation podwrapper: adapt footer to p2v .gitignore | 6 + Makefile.am | 4 +- configure.ac | 1 + docs/Makefile.am | 65 ++++++++ docs/p2v-building.pod | 259