diff options
author | Peter Maydell | 2018-08-03 10:52:27 +0200 |
---|---|---|
committer | Fam Zheng | 2018-08-15 04:12:35 +0200 |
commit | ebb61f804d6fdc44e3831beada5051263f6182a6 (patch) | |
tree | a7a7082a9563b023bdea217563dd4a777814cf24 /tests/vm/openbsd | |
parent | tests: vm: Add vm-clean-all (diff) | |
download | qemu-ebb61f804d6fdc44e3831beada5051263f6182a6.tar.gz qemu-ebb61f804d6fdc44e3831beada5051263f6182a6.tar.xz qemu-ebb61f804d6fdc44e3831beada5051263f6182a6.zip |
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/openbsd')
-rwxr-xr-x | tests/vm/openbsd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/vm/openbsd b/tests/vm/openbsd index 6ae16d97fd..df6b79fe7d 100755 --- a/tests/vm/openbsd +++ b/tests/vm/openbsd @@ -25,7 +25,7 @@ class OpenBSDVM(basevm.BaseVM): ./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): |