diff options
-rw-r--r-- | meta/lib/oeqa/selftest/cases/sstatetests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/lib/oeqa/selftest/cases/sstatetests.py b/meta/lib/oeqa/selftest/cases/sstatetests.py index 8d05e30423..feadf3c51c 100644 --- a/meta/lib/oeqa/selftest/cases/sstatetests.py +++ b/meta/lib/oeqa/selftest/cases/sstatetests.py | |||
@@ -418,7 +418,7 @@ DEFAULTTUNE_virtclass-multilib-lib32 = "x86" | |||
418 | 418 | ||
419 | self.write_config(""" | 419 | self.write_config(""" |
420 | TMPDIR = "${TOPDIR}/tmp-sstatesamehash" | 420 | TMPDIR = "${TOPDIR}/tmp-sstatesamehash" |
421 | BB_NUMBER_THREADS = "1" | 421 | BB_NUMBER_THREADS = "${@oe.utils.cpu_count()}" |
422 | PARALLEL_MAKE = "-j 1" | 422 | PARALLEL_MAKE = "-j 1" |
423 | DL_DIR = "${TOPDIR}/download1" | 423 | DL_DIR = "${TOPDIR}/download1" |
424 | TIME = "111111" | 424 | TIME = "111111" |
@@ -431,7 +431,7 @@ http_proxy = "" | |||
431 | bitbake("world meta-toolchain -S none") | 431 | bitbake("world meta-toolchain -S none") |
432 | self.write_config(""" | 432 | self.write_config(""" |
433 | TMPDIR = "${TOPDIR}/tmp-sstatesamehash2" | 433 | TMPDIR = "${TOPDIR}/tmp-sstatesamehash2" |
434 | BB_NUMBER_THREADS = "2" | 434 | BB_NUMBER_THREADS = "${@oe.utils.cpu_count()-1}" |
435 | PARALLEL_MAKE = "-j 2" | 435 | PARALLEL_MAKE = "-j 2" |
436 | DL_DIR = "${TOPDIR}/download2" | 436 | DL_DIR = "${TOPDIR}/download2" |
437 | TIME = "222222" | 437 | TIME = "222222" |