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