Displaying 3 results from an estimated 3 matches for "libguestfsocaml_a_libadd".
2017 Aug 31
0
Re: The issue about code coverage for libguestfs
...uestfsocaml_a-utils.o): In function `guestfs_int_string_is_valid':
> utils.c:(.text+0xb99): undefined reference to `c_isalpha'
> utils.c:(.text+0xbbf): undefined reference to `c_isdigit'
I suppose that we need to link the OCaml bindings to -lgnu, which
your patch attempts:
> +libguestfsocaml_a_LIBADD = \
> + $(top_builddir)/gnulib/lib/libgnu.la
> +
... but the problem is that libguestfsocaml.a isn't really used for
anything. See the comment in the same Makefile.am:
# Build the C part into a library, so that automake handles the C
# compilation step for us. Note that we don'...
2017 Aug 31
2
The issue about code coverage for libguestfs
Hi,
I tried to do code coverage testing for libguestfs with gcov.
The steps are shown as follows:
1. Download and install the source package(libguestfs-1.36.5-1.el7.src.rpm)
2. Modify libguestfs.spec file
#diff -u libguestfs.spec libguestfs.spec.modify
---------------------------------------------------------------------------------------
--- libguestfs.spec 2017-08-29 02:44:35.623751541 -0400
2017 Sep 01
2
Re: The issue about code coverage for libguestfs
...`guestfs_int_string_is_valid':
> > utils.c:(.text+0xb99): undefined reference to `c_isalpha'
> > utils.c:(.text+0xbbf): undefined reference to `c_isdigit'
>
> I suppose that we need to link the OCaml bindings to -lgnu, which
> your patch attempts:
>
> > +libguestfsocaml_a_LIBADD = \
> > + $(top_builddir)/gnulib/lib/libgnu.la
> > +
>
> ... but the problem is that libguestfsocaml.a isn't really used for
> anything. See the comment in the same Makefile.am:
>
> # Build the C part into a library, so that automake handles the C
> # compil...