mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-07 09:43:56 -06:00
tests/vm: Use make's --output-sync option
Use make's --output-sync option when running tests inside VMs, so that if we're building with parallelization the output doesn't get scrambled. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Message-Id: <20180803085230.30574-6-peter.maydell@linaro.org> Signed-off-by: Fam Zheng <famz@redhat.com>
This commit is contained in:
parent
eb2712f568
commit
f2d4becdc7
4 changed files with 8 additions and 8 deletions
|
@ -23,9 +23,9 @@ class OpenBSDVM(basevm.BaseVM):
|
|||
cd $(mktemp -d /var/tmp/qemu-test.XXXXXX);
|
||||
tar -xf /dev/rsd1c;
|
||||
./configure --cc=x86_64-unknown-openbsd6.1-gcc-4.9.4 --python=python2.7 {configure_opts};
|
||||
gmake -j{jobs} {verbose};
|
||||
gmake --output-sync -j{jobs} {verbose};
|
||||
# XXX: "gmake check" seems to always hang or fail
|
||||
#gmake -j{jobs} check {verbose};
|
||||
#gmake --output-sync -j{jobs} check {verbose};
|
||||
"""
|
||||
|
||||
def build_image(self, img):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue