summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLaurent Bonnans <laurent.bonnans@here.com>2019-04-10 10:15:08 +0200
committerPatrick Vacek <patrickvacek@gmail.com>2019-04-29 09:59:01 +0200
commitae54ed1e3956545b9822a972481a494d2309b9bc (patch)
treea5f8471c32392f91844349990fd8b938ab6e4df1
parent3b95982792d4f8c0d47e543d84abaaaeef56c611 (diff)
downloadmeta-updater-ae54ed1e3956545b9822a972481a494d2309b9bc.tar.gz
Parametrizable AKTUALIZR_PTEST_PARALLEL_LEVEL
Signed-off-by: Laurent Bonnans <laurent.bonnans@here.com>
-rwxr-xr-xrecipes-sota/aktualizr/files/run-ptest6
1 files changed, 4 insertions, 2 deletions
diff --git a/recipes-sota/aktualizr/files/run-ptest b/recipes-sota/aktualizr/files/run-ptest
index e5f0d56..ff441f9 100755
--- a/recipes-sota/aktualizr/files/run-ptest
+++ b/recipes-sota/aktualizr/files/run-ptest
@@ -1,6 +1,8 @@
1#!/bin/sh 1#!/bin/sh
2 2
3set -e 3set -eu
4
5AKTUALIZR_PTEST_PARALLEL_LEVEL=${AKTUALIZR_PTEST_PARALLEL_LEVEL:-2}
4 6
5filter_logs() { 7filter_logs() {
6 awk '/^.*Test[[:space:]]*#[[:digit:]]+:/ { 8 awk '/^.*Test[[:space:]]*#[[:digit:]]+:/ {
@@ -13,4 +15,4 @@ filter_logs() {
13} 15}
14 16
15cd build 17cd build
16ctest -j 8 -O /tmp/aktualizr-ptest.log --output-on-failure -LE 'noptest' 2> /dev/null | filter_logs 18ctest -j "$AKTUALIZR_PTEST_PARALLEL_LEVEL" -O /tmp/aktualizr-ptest.log --output-on-failure -LE 'noptest' 2> /dev/null | filter_logs