aboutsummaryrefslogtreecommitdiff
path: root/tests/vm/ubuntu.i386
diff options
context:
space:
mode:
authorPeter Maydell <peter.maydell@linaro.org>2018-07-30 19:16:34 +0100
committerPeter Maydell <peter.maydell@linaro.org>2018-07-30 19:21:11 +0100
commitdc2ec29fd4409a563e27a819793d3ad194d38947 (patch)
tree07d52115df38d633fb23906aa98e885ca39be8d4 /tests/vm/ubuntu.i386
parent2a128bf890bbb9d10308474d4e50324d3ceed7fd (diff)
tests/vm: Use make's --output-sync optionfix-vm-tests
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>
Diffstat (limited to 'tests/vm/ubuntu.i386')
-rwxr-xr-xtests/vm/ubuntu.i3864
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/vm/ubuntu.i386 b/tests/vm/ubuntu.i386
index 7ea2532707..54c25d5727 100755
--- a/tests/vm/ubuntu.i386
+++ b/tests/vm/ubuntu.i386
@@ -25,8 +25,8 @@ class UbuntuX86VM(basevm.BaseVM):
sudo chmod a+r /dev/vdb;
tar -xf /dev/vdb;
./configure {configure_opts};
- make -j{jobs};
- make check -j{jobs} {verbose};
+ make --output-sync -j{jobs};
+ make --output-sync check -j{jobs} {verbose};
"""
def _gen_cloud_init_iso(self):