From dd04b625b6c5b109b8d3f94f0fc60a845af1a89e Mon Sep 17 00:00:00 2001 From: Aleksander Mistewicz Date: Thu, 28 Apr 2016 17:59:26 +0200 Subject: [PATCH] Copy common.sh from tct directory to tsp Change-Id: I7c5fd416fd985398b2eb66339bfbcad02a31d72c Signed-off-by: Aleksander Mistewicz --- tsp/common.sh | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100755 tsp/common.sh diff --git a/tsp/common.sh b/tsp/common.sh new file mode 100755 index 0000000..cdb31a8 --- /dev/null +++ b/tsp/common.sh @@ -0,0 +1,28 @@ +# Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# This function takes up to two arguments: +# 1. error message +# 2. exit code (default: 1) +# +# Example: test -n "$VAR" || die "VAR is not set!" 5 +# If variable $VAR is not set, "VAR is not set!" will be printed on stderr +# and script in which it was invoked will exit with exit code equal to 5. +# +# Author: Aleksander Mistewicz + +die() { + printf >&2 -- '%s\n' "$1" + exit ${2:-1} +} -- 2.7.4