summaryrefslogtreecommitdiffstats
path: root/tests/vm/netbsd
diff options
context:
space:
mode:
authorPeter Maydell2018-08-03 10:52:30 +0200
committerFam Zheng2018-08-15 04:12:35 +0200
commitf2d4becdc765b0f8d3095283644c6b62fa5d525a (patch)
tree9e7f2064e0df190541bff0817a9ff24147f1db04 /tests/vm/netbsd
parenttests/vm: Bump guest RAM up from 2G to 4G (diff)
downloadqemu-f2d4becdc765b0f8d3095283644c6b62fa5d525a.tar.gz
qemu-f2d4becdc765b0f8d3095283644c6b62fa5d525a.tar.xz
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/netbsd')
-rwxr-xr-xtests/vm/netbsd4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/vm/netbsd b/tests/vm/netbsd
index c211672bcb..45c9260dc0 100755
--- a/tests/vm/netbsd
+++ b/tests/vm/netbsd
@@ -23,8 +23,8 @@ class NetBSDVM(basevm.BaseVM):
cd $(mktemp -d /var/tmp/qemu-test.XXXXXX);
tar -xf /dev/rld1a;
./configure --python=python2.7 {configure_opts};
- gmake -j{jobs} {verbose};
- gmake -j{jobs} check {verbose};
+ gmake --output-sync -j{jobs} {verbose};
+ gmake --output-sync -j{jobs} check {verbose};
"""
def build_image(self, img):