search for: 14b513b

Displaying 3 results from an estimated 3 matches for "14b513b".

Did you mean: 14513
2020 Mar 12
0
[PATCH libnbd 3/3] build: Test new pkgconf file.
...s.sh \ $(NULL) @@ -73,6 +74,7 @@ TESTS += \ debug-environment \ version \ export-name \ + pkgconf.sh \ $(NULL) # Even though we have a compile.c, we do not want make to create a 'compile' diff --git a/tests/pkgconf.sh.in b/tests/pkgconf.sh.in new file mode 100755 index 0000000..14b513b --- /dev/null +++ b/tests/pkgconf.sh.in @@ -0,0 +1,38 @@ +#!/usr/bin/env bash +# nbd client library in userspace +# @configure_input@ +# Copyright (C) 2019-2020 Red Hat Inc. +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Pu...
2020 Mar 12
5
[PATCH libnbd 1/3] tests: Don't use <config.h> in simple compile tests.
For these simple compile tests where we want to ensure that a basic external program could be compiled using libnbd, we shouldn't include <config.h>. This is because we want to test here that <libnbd.h> can stand alone, without needing anything defined by the GNU autotools infrastructure. Of course we can use <config.h> in other test programs where we aren't evaluating
2020 Mar 13
2
Re: [PATCH libnbd 3/3] build: Test new pkgconf file.
...meta-base-allocation.sh \ > + pkgconf.sh.in \ As AC_CONFIG_FILES has tests/pkgconf.sh, the .in file is included automatically by autotools in the dist tarballs. Hence, this line is extra. > diff --git a/tests/pkgconf.sh.in b/tests/pkgconf.sh.in > new file mode 100755 > index 0000000..14b513b > --- /dev/null > +++ b/tests/pkgconf.sh.in > @@ -0,0 +1,38 @@ > +#!/usr/bin/env bash > +# nbd client library in userspace > +# @configure_input@ > +# Copyright (C) 2019-2020 Red Hat Inc. > +# > +# This library is free software; you can redistribute it and/or > +# modi...