xref: /openbmc/qemu/tests/docker/test-quick (revision 62838478)
1b7899d63SFam Zheng#!/bin/bash -e
2b7899d63SFam Zheng#
3b7899d63SFam Zheng# Quick compiling test that everyone already does. But why not automate it?
4b7899d63SFam Zheng#
5b7899d63SFam Zheng# Copyright (c) 2016 Red Hat Inc.
6b7899d63SFam Zheng#
7b7899d63SFam Zheng# Authors:
8b7899d63SFam Zheng#  Fam Zheng <famz@redhat.com>
9b7899d63SFam Zheng#
10b7899d63SFam Zheng# This work is licensed under the terms of the GNU GPL, version 2
11b7899d63SFam Zheng# or (at your option) any later version. See the COPYING file in
12b7899d63SFam Zheng# the top-level directory.
13b7899d63SFam Zheng
14b7899d63SFam Zheng. common.rc
15b7899d63SFam Zheng
16c16fe84fSFam Zhengcd "$BUILD_DIR"
17c16fe84fSFam Zheng
183d3a6eb6SFam ZhengDEF_TARGET_LIST="x86_64-softmmu,aarch64-softmmu"
19b7899d63SFam ZhengTARGET_LIST=${TARGET_LIST:-$DEF_TARGET_LIST} \
20b7899d63SFam Zhengbuild_qemu
21b7899d63SFam Zhengmake check $MAKEFLAGS
22*62838478SPaolo Bonziniinstall_qemu
23