X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=common%2Fscripts%2Fservice-check-gfx.sh;h=63e557e38cbb773aae353f77745095d3bdde031d;hb=5bec50058c8773be1bbf5f7c5a5f665cad4df884;hp=9064dbd8f3de1fb9de21b34576568cbae7c04575;hpb=76e8255fe3f4628a18808c3973323068af579b64;p=src%2Fqa-testdefinitions.git diff --git a/common/scripts/service-check-gfx.sh b/common/scripts/service-check-gfx.sh index 9064dbd..63e557e 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 @@ -18,8 +19,8 @@ while getopts ":b:d:" option; do esac done -REQUIREDSOCKETS="cynara.socket dbus.socket security-manager.socket" -REQUIREDSERVICES="afm-system-daemon.service connman.service ofono.service weston.service bluetooth.service" +REQUIREDSOCKETS="dbus.socket" +REQUIREDSERVICES="connman.service weston.service" ALL="${REQUIREDSOCKETS} ${REQUIREDSERVICES}" RESULT="unknown" @@ -41,6 +42,16 @@ for i in ${ALL} ; do RESULT="pass" else RESULT="fail" + if [[ ${i} == "bluetooth.service" ]]; then + if [[ ${DEVICE_TAGS} != *"bluetooth"* ]] || [[ ${BUILD_TAGS} != *"bluetooth"* ]]; then + RESULT="skip" + fi + fi + if [[ ${i} == "ofono.service" ]]; then + if [[ ${DEVICE_TAGS} != *"bluetooth"* ]] || [[ ${BUILD_TAGS} != *"bluetooth"* ]]; then + RESULT="skip" + fi + fi fi fi @@ -60,4 +71,4 @@ echo "Only the failed systemd units:" echo "------------------------------------------------" ( systemctl list-units | grep failed ) || true -exit 0 \ No newline at end of file +exit 0