summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/glib-2.0
diff options
context:
space:
mode:
authorAditya Tayade <Aditya.Tayade@kpit.com>2019-03-25 15:27:11 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-03-26 14:02:09 +0000
commita9ec38c65e1f0cafd4431a3cb017d60d17abdfdd (patch)
treeee189ce8215c5f1142bdb2c9076dc88f7ed0262f /meta/recipes-core/glib-2.0
parentf26680fad518a49259fe9689e476edec832d770c (diff)
downloadpoky-a9ec38c65e1f0cafd4431a3cb017d60d17abdfdd.tar.gz
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 <Aditya.Tayade@kpit.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/glib-2.0')
-rw-r--r--meta/recipes-core/glib-2.0/glib-2.0/run-ptest1
1 files changed, 1 insertions, 0 deletions
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 @@
1#! /bin/sh 1#! /bin/sh
2 2
3set -eux
3useradd glib2-test 4useradd glib2-test
4su glib2-test -c gnome-desktop-testing-runner glib 5su glib2-test -c gnome-desktop-testing-runner glib
5userdel glib2-test 6userdel glib2-test