2016-06-01 07:25:20 +03:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# Common routines for docker test scripts.
|
|
|
|
#
|
|
|
|
# Copyright (c) 2016 Red Hat Inc.
|
|
|
|
#
|
|
|
|
# Authors:
|
|
|
|
# Fam Zheng <famz@redhat.com>
|
|
|
|
#
|
|
|
|
# This work is licensed under the terms of the GNU GPL, version 2
|
|
|
|
# or (at your option) any later version. See the COPYING file in
|
|
|
|
# the top-level directory.
|
|
|
|
|
|
|
|
requires()
|
|
|
|
{
|
|
|
|
for c in $@; do
|
|
|
|
if ! echo "$FEATURES" | grep -wq -e "$c"; then
|
|
|
|
echo "Prerequisite '$c' not present, skip"
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
build_qemu()
|
|
|
|
{
|
2016-09-21 06:49:25 +03:00
|
|
|
config_opts="--enable-werror \
|
|
|
|
${TARGET_LIST:+--target-list=${TARGET_LIST}} \
|
2017-08-17 06:57:21 +03:00
|
|
|
--prefix=$INSTALL_DIR \
|
2017-02-20 13:51:37 +03:00
|
|
|
$QEMU_CONFIGURE_OPTS $EXTRA_CONFIGURE_OPTS \
|
2016-09-21 06:49:25 +03:00
|
|
|
$@"
|
|
|
|
echo "Configure options:"
|
|
|
|
echo $config_opts
|
2017-09-05 05:56:09 +03:00
|
|
|
$QEMU_SRC/configure $config_opts && make $MAKEFLAGS
|
2016-06-01 07:25:20 +03:00
|
|
|
}
|
2017-09-05 05:56:10 +03:00
|
|
|
|
|
|
|
test_fail()
|
|
|
|
{
|
|
|
|
echo "$@"
|
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
|
|
|
|
prep_fail()
|
|
|
|
{
|
|
|
|
echo "$@"
|
|
|
|
exit 2
|
|
|
|
}
|
2017-09-22 18:49:31 +03:00
|
|
|
|
|
|
|
install_qemu()
|
|
|
|
{
|
|
|
|
make install $MAKEFLAGS DESTDIR=$PWD/=destdir
|
|
|
|
ret=$?
|
|
|
|
rm -rf $PWD/=destdir
|
|
|
|
return $ret
|
|
|
|
}
|