Add die() to tct/common.sh
authorAleksander Mistewicz <a.mistewicz@samsung.com>
Mon, 14 Dec 2015 13:59:11 +0000 (14:59 +0100)
committerAleksander Mistewicz <a.mistewicz@samsung.com>
Fri, 13 May 2016 12:09:42 +0000 (14:09 +0200)
commitf7257338cb531526e9dbf7512821c03346f7cad8
tree2e9433a7478f600c65218cfc273e13df71e96c17
parent5e2162e136bffb62159aab59da9ebf5b86b615e5
Add die() to tct/common.sh

This function takes up to two arguments:
    1. error message
    2. exit code (default: 1)

Example: test -n "$1" || die "No arguments!" 5
If variable $1 is not set, "No arguments!" will be printed on stderr
and script in which it was invoked will exit with exit code equal to 5.

Change-Id: I7993d1ab3be9025853f50d86c7dc5bc120ecec7e
Signed-off-by: Aleksander Mistewicz <a.mistewicz@samsung.com>
tct/common.sh [new file with mode: 0755]