From: Corentin LABBE Date: Tue, 26 Nov 2019 09:07:37 +0000 (+0100) Subject: SPEC-2970: Improove logging size X-Git-Tag: 8.99.2~8 X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=commitdiff_plain;h=cd64f3d0e996ff86f9a45904d9a3ea76e3f49a66;p=src%2Fqa-testdefinitions.git SPEC-2970: Improove logging size When TERM is dump, the width of logging is cropped at 80columns which made debugging harder. This patchs increase columns size to 1000. Bug-AGL: SPEC-2970 Change-Id: Ia70136b6aa6242362b1286631ae4b00ab567ae2e Signed-off-by: Corentin LABBE --- diff --git a/common/scripts/application-lifecycle.sh b/common/scripts/application-lifecycle.sh index 13fed05..998391d 100755 --- a/common/scripts/application-lifecycle.sh +++ b/common/scripts/application-lifecycle.sh @@ -3,6 +3,7 @@ set -x export TERM=dumb +export COLUMNS=1000 AGLDRIVER=agl-driver diff --git a/common/scripts/service-check-gfx.sh b/common/scripts/service-check-gfx.sh index 825ed7a..e4804e3 100755 --- a/common/scripts/service-check-gfx.sh +++ b/common/scripts/service-check-gfx.sh @@ -2,6 +2,7 @@ export LANG=C export TERM=dumb +export COLUMNS=1000 while getopts ":b:d:" option; do case "${option}" in diff --git a/common/scripts/service-check-nogfx.sh b/common/scripts/service-check-nogfx.sh index 6515377..a584e4e 100755 --- a/common/scripts/service-check-nogfx.sh +++ b/common/scripts/service-check-nogfx.sh @@ -2,6 +2,7 @@ export LANG=C export TERM=dumb +export COLUMNS=1000 REQUIREDSOCKETS="dbus.socket security-manager.socket" REQUIREDSERVICES="afm-system-daemon.service connman.service ofono.service bluetooth.service"