tests/vm: Pass the jobs parallelism setting to 'make check'

Our test suite works for parallel execution too, and this can
noticeably speed up a test run; pass the 'jobs' setting to
it as well as to the build proper.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Message-Id: <20180803085230.30574-3-peter.maydell@linaro.org>
Signed-off-by: Fam Zheng <famz@redhat.com>
This commit is contained in:
Peter Maydell 2018-08-03 09:52:27 +01:00 committed by Fam Zheng
parent ebe95fa094
commit ebb61f804d
4 changed files with 4 additions and 4 deletions

View file

@ -24,7 +24,7 @@ class FreeBSDVM(basevm.BaseVM):
tar -xf /dev/vtbd1;
./configure {configure_opts};
gmake -j{jobs};
gmake check;
gmake -j{jobs} check;
"""
def build_image(self, img):