2007-02-07 17:46:44 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
set -e
|
2007-02-14 02:12:41 +00:00
|
|
|
set -v
|
2007-02-07 17:46:44 +00:00
|
|
|
|
|
|
|
# Make things clean.
|
|
|
|
|
2008-08-21 19:31:55 +00:00
|
|
|
test -n "$1" && RESULTS=$1 || RESULTS=results.log
|
2010-04-30 16:57:10 +00:00
|
|
|
: ${AUTOBUILD_INSTALL_ROOT=$HOME/builder}
|
2007-02-07 17:46:44 +00:00
|
|
|
|
2013-09-14 11:29:42 +00:00
|
|
|
# If run under the autobuilder, we must use --nodeps with rpmbuild;
|
|
|
|
# but this can lead to odd error diagnosis for normal development.
|
|
|
|
nodeps=
|
|
|
|
if test "${AUTOBUILD_COUNTER+set}"; then
|
|
|
|
nodeps=--nodeps
|
|
|
|
fi
|
|
|
|
|
2007-02-07 17:46:44 +00:00
|
|
|
test -f Makefile && make -k distclean || :
|
2007-02-14 02:12:41 +00:00
|
|
|
rm -rf coverage
|
2007-02-07 17:46:44 +00:00
|
|
|
|
2010-04-30 14:52:54 +00:00
|
|
|
rm -rf build
|
|
|
|
mkdir build
|
|
|
|
cd build
|
2007-02-07 17:46:44 +00:00
|
|
|
|
2011-03-22 15:40:35 +00:00
|
|
|
# Run with options not normally exercised by the rpm build, for
|
|
|
|
# more complete code coverage.
|
2010-04-30 14:52:54 +00:00
|
|
|
../autogen.sh --prefix="$AUTOBUILD_INSTALL_ROOT" \
|
build: add configure option to disable gnulib tests
The gnulib testsuite is relatively stable - the only times it is
likely to have a test change from pass to fail is on a gnulib
submodule update or a major system change (such as moving from
Fedora 18 to 19, or other large change to libc). While it is an
important test for end users on arbitrary machines (to make sure
that the portability glue works for their machine), it mostly
wastes time for development testing (as most developers aren't
making any of the major changes that would cause gnulib tests
to alter behavior). Thus, it pays to make the tests optional
at configure time, defaulting to off for development, on for
tarballs, with autobuilders requesting it to be on. It also
helps to allow a make-time override, via VIR_TEST_EXPENSIVE=[01]
(much the way automake sets up V=[01] for overriding the configure
time default of how verbose to be).
Automake has some pretty hard-coded magic with regards to the
TESTS variable; I had quite a job figuring out how to keep
'make distcheck' passing regardless of the configure option
setting in use, while still disabling the tests at runtime
when I did not configure them on and did not use the override
variable. Thankfully, we require GNU make, which lets me
hide some information from Automake's magic handling of TESTS.
* bootstrap.conf (bootstrap_epilogue): Munge gnulib test variable.
* configure.ac (--enable-expensive-tests): Add new enable switch.
(VIR_TEST_EXPENSIVE_DEFAULT, WITH_EXPENSIVE_TESTS): Set new
witnesses.
* gnulib/tests/Makefile.am (TESTS): Make tests conditional on
configure settings and the VIR_TEST_EXPENSIVE variable.
* tests/Makefile.am (TESTS_ENVIRONMENT): Expose VIR_TEST_EXPENSIVE
to all tests.
* autobuild.sh: Enable all tests during autobuilds.
* libvirt.spec.in (%configure): Likewise.
* mingw-libvirt.spec.in (%mingw_configure): Likewise.
* docs/hacking.html.in: Document the option.
* HACKING: Regenerate.
Signed-off-by: Eric Blake <eblake@redhat.com>
2013-07-31 13:18:58 +00:00
|
|
|
--enable-expensive-tests \
|
2007-03-08 21:32:18 +00:00
|
|
|
--enable-test-coverage \
|
2011-03-22 15:40:35 +00:00
|
|
|
--disable-nls \
|
2013-04-02 15:52:31 +00:00
|
|
|
--enable-werror \
|
|
|
|
--enable-static
|
2007-02-07 17:46:44 +00:00
|
|
|
|
2008-08-28 09:08:44 +00:00
|
|
|
# If the MAKEFLAGS envvar does not yet include a -j option,
|
|
|
|
# add -jN where N depends on the number of processors.
|
|
|
|
case $MAKEFLAGS in
|
|
|
|
*-j*) ;;
|
|
|
|
*) n=$(getconf _NPROCESSORS_ONLN 2> /dev/null)
|
|
|
|
test "$n" -gt 0 || n=1
|
|
|
|
n=$(expr $n + 1)
|
|
|
|
MAKEFLAGS="$MAKEFLAGS -j$n"
|
|
|
|
export MAKEFLAGS
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2007-02-07 17:46:44 +00:00
|
|
|
make
|
|
|
|
make install
|
|
|
|
|
2010-06-04 03:07:09 +00:00
|
|
|
# set -o pipefail is a bashism; this use of exec is the POSIX alternative
|
|
|
|
exec 3>&1
|
|
|
|
st=$(
|
|
|
|
exec 4>&1 >&3
|
2010-12-10 22:30:56 +00:00
|
|
|
{ make check syntax-check 2>&1 3>&- 4>&-; echo $? >&4; } | tee "$RESULTS"
|
2010-06-04 03:07:09 +00:00
|
|
|
)
|
|
|
|
exec 3>&-
|
2010-11-17 17:38:59 +00:00
|
|
|
test "$st" = 0
|
2008-05-29 20:43:08 +00:00
|
|
|
test -x /usr/bin/lcov && make cov
|
2007-02-07 17:46:44 +00:00
|
|
|
|
|
|
|
rm -f *.tar.gz
|
|
|
|
make dist
|
|
|
|
|
2012-06-15 16:13:11 +00:00
|
|
|
if test -n "$AUTOBUILD_COUNTER" ; then
|
2008-10-10 11:33:10 +00:00
|
|
|
EXTRA_RELEASE=".auto$AUTOBUILD_COUNTER"
|
|
|
|
else
|
|
|
|
NOW=`date +"%s"`
|
|
|
|
EXTRA_RELEASE=".$USER$NOW"
|
|
|
|
fi
|
2008-09-05 12:03:45 +00:00
|
|
|
|
2012-06-15 16:13:11 +00:00
|
|
|
if test -f /usr/bin/rpmbuild ; then
|
2013-09-14 11:29:42 +00:00
|
|
|
rpmbuild $nodeps \
|
2008-09-05 12:03:45 +00:00
|
|
|
--define "extra_release $EXTRA_RELEASE" \
|
|
|
|
--define "_sourcedir `pwd`" \
|
|
|
|
-ba --clean libvirt.spec
|
|
|
|
fi
|
|
|
|
|
2012-06-15 16:13:11 +00:00
|
|
|
# Test mingw32 cross-compile
|
|
|
|
if test -x /usr/bin/i686-w64-mingw32-gcc ; then
|
2008-09-05 12:03:45 +00:00
|
|
|
make distclean
|
|
|
|
|
2013-05-17 12:29:12 +00:00
|
|
|
PKG_CONFIG_LIBDIR="/usr/i686-w64-mingw32/sys-root/mingw/lib/pkgconfig:/usr/i686-w64-mingw32/sys-root/mingw/share/pkgconfig" \
|
2012-06-15 16:13:11 +00:00
|
|
|
PKG_CONFIG_PATH="$AUTOBUILD_INSTALL_ROOT/i686-w64-mingw32/sys-root/mingw/lib/pkgconfig" \
|
|
|
|
CC="i686-w64-mingw32-gcc" \
|
2010-04-30 14:52:54 +00:00
|
|
|
../configure \
|
2012-06-15 16:13:11 +00:00
|
|
|
--build=$(uname -m)-w64-linux \
|
|
|
|
--host=i686-w64-mingw32 \
|
|
|
|
--prefix="$AUTOBUILD_INSTALL_ROOT/i686-w64-mingw32/sys-root/mingw" \
|
build: add configure option to disable gnulib tests
The gnulib testsuite is relatively stable - the only times it is
likely to have a test change from pass to fail is on a gnulib
submodule update or a major system change (such as moving from
Fedora 18 to 19, or other large change to libc). While it is an
important test for end users on arbitrary machines (to make sure
that the portability glue works for their machine), it mostly
wastes time for development testing (as most developers aren't
making any of the major changes that would cause gnulib tests
to alter behavior). Thus, it pays to make the tests optional
at configure time, defaulting to off for development, on for
tarballs, with autobuilders requesting it to be on. It also
helps to allow a make-time override, via VIR_TEST_EXPENSIVE=[01]
(much the way automake sets up V=[01] for overriding the configure
time default of how verbose to be).
Automake has some pretty hard-coded magic with regards to the
TESTS variable; I had quite a job figuring out how to keep
'make distcheck' passing regardless of the configure option
setting in use, while still disabling the tests at runtime
when I did not configure them on and did not use the override
variable. Thankfully, we require GNU make, which lets me
hide some information from Automake's magic handling of TESTS.
* bootstrap.conf (bootstrap_epilogue): Munge gnulib test variable.
* configure.ac (--enable-expensive-tests): Add new enable switch.
(VIR_TEST_EXPENSIVE_DEFAULT, WITH_EXPENSIVE_TESTS): Set new
witnesses.
* gnulib/tests/Makefile.am (TESTS): Make tests conditional on
configure settings and the VIR_TEST_EXPENSIVE variable.
* tests/Makefile.am (TESTS_ENVIRONMENT): Expose VIR_TEST_EXPENSIVE
to all tests.
* autobuild.sh: Enable all tests during autobuilds.
* libvirt.spec.in (%configure): Likewise.
* mingw-libvirt.spec.in (%mingw_configure): Likewise.
* docs/hacking.html.in: Document the option.
* HACKING: Regenerate.
Signed-off-by: Eric Blake <eblake@redhat.com>
2013-07-31 13:18:58 +00:00
|
|
|
--enable-expensive-tests \
|
2014-04-28 12:30:36 +00:00
|
|
|
--enable-werror
|
2008-09-05 12:03:45 +00:00
|
|
|
|
|
|
|
make
|
|
|
|
make install
|
|
|
|
|
2012-06-15 16:13:11 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Test mingw64 cross-compile
|
|
|
|
if test -x /usr/bin/x86_64-w64-mingw32-gcc ; then
|
|
|
|
make distclean
|
|
|
|
|
2013-05-17 12:29:12 +00:00
|
|
|
PKG_CONFIG_LIBDIR="/usr/x86_64-w64-mingw32/sys-root/mingw/lib/pkgconfig:/usr/x86_64-w64-mingw32/sys-root/mingw/share/pkgconfig" \
|
2012-06-15 16:13:11 +00:00
|
|
|
PKG_CONFIG_PATH="$AUTOBUILD_INSTALL_ROOT/x86_64-w64-mingw32/sys-root/mingw/lib/pkgconfig" \
|
|
|
|
CC="x86_64-w64-mingw32-gcc" \
|
|
|
|
../configure \
|
|
|
|
--build=$(uname -m)-w64-linux \
|
|
|
|
--host=x86_64-w64-mingw32 \
|
|
|
|
--prefix="$AUTOBUILD_INSTALL_ROOT/x86_64-w64-mingw32/sys-root/mingw" \
|
build: add configure option to disable gnulib tests
The gnulib testsuite is relatively stable - the only times it is
likely to have a test change from pass to fail is on a gnulib
submodule update or a major system change (such as moving from
Fedora 18 to 19, or other large change to libc). While it is an
important test for end users on arbitrary machines (to make sure
that the portability glue works for their machine), it mostly
wastes time for development testing (as most developers aren't
making any of the major changes that would cause gnulib tests
to alter behavior). Thus, it pays to make the tests optional
at configure time, defaulting to off for development, on for
tarballs, with autobuilders requesting it to be on. It also
helps to allow a make-time override, via VIR_TEST_EXPENSIVE=[01]
(much the way automake sets up V=[01] for overriding the configure
time default of how verbose to be).
Automake has some pretty hard-coded magic with regards to the
TESTS variable; I had quite a job figuring out how to keep
'make distcheck' passing regardless of the configure option
setting in use, while still disabling the tests at runtime
when I did not configure them on and did not use the override
variable. Thankfully, we require GNU make, which lets me
hide some information from Automake's magic handling of TESTS.
* bootstrap.conf (bootstrap_epilogue): Munge gnulib test variable.
* configure.ac (--enable-expensive-tests): Add new enable switch.
(VIR_TEST_EXPENSIVE_DEFAULT, WITH_EXPENSIVE_TESTS): Set new
witnesses.
* gnulib/tests/Makefile.am (TESTS): Make tests conditional on
configure settings and the VIR_TEST_EXPENSIVE variable.
* tests/Makefile.am (TESTS_ENVIRONMENT): Expose VIR_TEST_EXPENSIVE
to all tests.
* autobuild.sh: Enable all tests during autobuilds.
* libvirt.spec.in (%configure): Likewise.
* mingw-libvirt.spec.in (%mingw_configure): Likewise.
* docs/hacking.html.in: Document the option.
* HACKING: Regenerate.
Signed-off-by: Eric Blake <eblake@redhat.com>
2013-07-31 13:18:58 +00:00
|
|
|
--enable-expensive-tests \
|
2014-04-28 12:30:36 +00:00
|
|
|
--enable-werror
|
2012-06-15 16:13:11 +00:00
|
|
|
|
|
|
|
make
|
|
|
|
make install
|
|
|
|
|
|
|
|
fi
|
|
|
|
|
2008-09-05 12:03:45 +00:00
|
|
|
|
2012-06-15 16:13:11 +00:00
|
|
|
if test -x /usr/bin/i686-w64-mingw32-gcc && test -x /usr/bin/x86_64-w64-mingw32-gcc ; then
|
|
|
|
if test -f /usr/bin/rpmbuild ; then
|
2013-09-14 11:29:42 +00:00
|
|
|
rpmbuild $nodeps \
|
2008-10-10 11:33:10 +00:00
|
|
|
--define "extra_release $EXTRA_RELEASE" \
|
|
|
|
--define "_sourcedir `pwd`" \
|
2012-06-15 16:13:11 +00:00
|
|
|
-ba --clean mingw-libvirt.spec
|
2008-10-10 11:33:10 +00:00
|
|
|
fi
|
2007-02-07 17:46:44 +00:00
|
|
|
fi
|