diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2018-08-03 09:52:27 +0100 |
---|---|---|
committer | Fam Zheng <famz@redhat.com> | 2018-08-15 10:12:35 +0800 |
commit | ebb61f804d6fdc44e3831beada5051263f6182a6 (patch) | |
tree | a7a7082a9563b023bdea217563dd4a777814cf24 /tests/vm/freebsd | |
parent | ebe95fa09439a8d94d7161e26fab2ed54a0773b9 (diff) |
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>
Diffstat (limited to 'tests/vm/freebsd')
-rwxr-xr-x | tests/vm/freebsd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/vm/freebsd b/tests/vm/freebsd index 039dad8f69..2187a17327 100755 --- a/tests/vm/freebsd +++ b/tests/vm/freebsd @@ -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): |