mirror of
https://git.yoctoproject.org/poky
synced 2026-05-08 05:09:24 +00:00
selftest/sstatetests: Fix potential failure on uniprocessor machines
It was pointed out +1 is safer than -1 for systems with one processor. (From OE-Core rev: 78041e20e43d9583448ff31f8b9b1c6157da8625) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -431,7 +431,7 @@ http_proxy = ""
|
||||
bitbake("world meta-toolchain -S none")
|
||||
self.write_config("""
|
||||
TMPDIR = "${TOPDIR}/tmp-sstatesamehash2"
|
||||
BB_NUMBER_THREADS = "${@oe.utils.cpu_count()-1}"
|
||||
BB_NUMBER_THREADS = "${@oe.utils.cpu_count()+1}"
|
||||
PARALLEL_MAKE = "-j 2"
|
||||
DL_DIR = "${TOPDIR}/download2"
|
||||
TIME = "222222"
|
||||
|
||||
Reference in New Issue
Block a user