diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2018-08-03 09:52:30 +0100 |
---|---|---|
committer | Fam Zheng <famz@redhat.com> | 2018-08-15 10:12:35 +0800 |
commit | f2d4becdc765b0f8d3095283644c6b62fa5d525a (patch) | |
tree | 9e7f2064e0df190541bff0817a9ff24147f1db04 /tests/vm/openbsd | |
parent | eb2712f5682c747c64f69e32fdb233839d739db8 (diff) | |
download | qemu-f2d4becdc765b0f8d3095283644c6b62fa5d525a.zip |
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>
Diffstat (limited to 'tests/vm/openbsd')
-rwxr-xr-x | tests/vm/openbsd | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/vm/openbsd b/tests/vm/openbsd index 1e0c2500ad..98edfbca4b 100755 --- a/tests/vm/openbsd +++ b/tests/vm/openbsd @@ -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): |