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>
tar -xf /dev/vtbd1;
./configure {configure_opts};
gmake -j{jobs};
- gmake check;
+ gmake -j{jobs} check;
"""
def build_image(self, img):
tar -xf /dev/rld1a;
./configure --python=python2.7 {configure_opts};
gmake -j{jobs};
- gmake check;
+ gmake -j{jobs} check;
"""
def build_image(self, img):
./configure --cc=x86_64-unknown-openbsd6.1-gcc-4.9.4 --python=python2.7 {configure_opts};
gmake -j{jobs};
# XXX: "gmake check" seems to always hang or fail
- #gmake check;
+ #gmake -j{jobs} check;
"""
def build_image(self, img):
tar -xf /dev/vdb;
./configure {configure_opts};
make -j{jobs};
- make check;
+ make -j{jobs} check;
"""
def _gen_cloud_init_iso(self):