diff options
author | Alexander Kanavin <alex.kanavin@gmail.com> | 2023-09-17 11:38:40 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-09-18 08:53:10 +0100 |
commit | 699cda33f24390c5f1429b24af767564fdb68ad6 (patch) | |
tree | d6a7721db57a9f4121d7968e7c946884e5a2d231 /meta/recipes-devtools/strace | |
parent | c393035c88914142d13933f0ab5e6bc14d393366 (diff) | |
download | poky-699cda33f24390c5f1429b24af767564fdb68ad6.tar.gz |
strace: parallelize ptest
strace is one of the slowest tests otherwise (can take 40 minutes or more),
and this brings it to under 10 minutes \0/
(From OE-Core rev: 0c632b418a785494318d9f375a07d879772e8ced)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/strace')
-rwxr-xr-x | meta/recipes-devtools/strace/strace/run-ptest | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/strace/strace/run-ptest b/meta/recipes-devtools/strace/strace/run-ptest index 86daed9220..1224229e8f 100755 --- a/meta/recipes-devtools/strace/strace/run-ptest +++ b/meta/recipes-devtools/strace/strace/run-ptest | |||
@@ -3,7 +3,7 @@ | |||
3 | set -u | 3 | set -u |
4 | 4 | ||
5 | export TIMEOUT_DURATION=240 | 5 | export TIMEOUT_DURATION=240 |
6 | make -B -C tests -k test-suite.log | 6 | make -j4 -B -C tests -k test-suite.log |
7 | res=$? | 7 | res=$? |
8 | if [ $res -ne 0 ]; then | 8 | if [ $res -ne 0 ]; then |
9 | cat tests/test-suite.log | 9 | cat tests/test-suite.log |