From a9ec38c65e1f0cafd4431a3cb017d60d17abdfdd Mon Sep 17 00:00:00 2001 From: Aditya Tayade Date: Mon, 25 Mar 2019 15:27:11 +0000 Subject: run-ptest: use error handling for useradd and userdel Error handling in shell scripts is too easy to forget and get wrong. It is possible to check every external command for return values but it is better to use a generic setting which halts execution of the script on any failures. Upstream-Status: Pending (From OE-Core rev: 4868de2e67bd304e41ac2158ccfcb166cfe16242) Signed-off-by: Aditya Tayade Signed-off-by: Richard Purdie --- meta/recipes-core/glib-2.0/glib-2.0/run-ptest | 1 + 1 file changed, 1 insertion(+) (limited to 'meta/recipes-core/glib-2.0/glib-2.0') diff --git a/meta/recipes-core/glib-2.0/glib-2.0/run-ptest b/meta/recipes-core/glib-2.0/glib-2.0/run-ptest index 5b85e8fabe..8f082d34f6 100644 --- a/meta/recipes-core/glib-2.0/glib-2.0/run-ptest +++ b/meta/recipes-core/glib-2.0/glib-2.0/run-ptest @@ -1,5 +1,6 @@ #! /bin/sh +set -eux useradd glib2-test su glib2-test -c gnome-desktop-testing-runner glib userdel glib2-test -- cgit v1.2.3-54-g00ecf