aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxim Kuvyrkov <maxim.kuvyrkov@linaro.org>2020-12-12 18:14:27 +0000
committerMaxim Kuvyrkov <maxim.kuvyrkov@linaro.org>2020-12-15 05:25:48 +0000
commit91e99f478e3ac30d1f3234b2dddd6c5674504a13 (patch)
tree942448613bdd8f962f7ccb18b4eabbf91157456e
parent54df060dba5fe294ee978dabd8e95da46ad99e27 (diff)
Add $PWD to wrapper's error output
Change-Id: Id1e9af44681092d1367769ad6838176819cae4a9
-rwxr-xr-xwrappers/__generic2
1 files changed, 1 insertions, 1 deletions
diff --git a/wrappers/__generic b/wrappers/__generic
index 0b3f537..e034018 100755
--- a/wrappers/__generic
+++ b/wrappers/__generic
@@ -32,6 +32,6 @@ if [ "$(readlink /proc/$$/fd/2)" = "/dev/null" ]; then
fi
if [ $TEST_RESULT -ne 0 -a ! -z "$REPORT_FILE_TEMPLATE" ]; then
- echo RESULT:$RESULT -- "$0 $@" >> "${REPORT_FILE_TEMPLATE}$CMD"
+ echo RESULT:$RESULT -- PWD: $(pwd) -- "$0 $@" >> "${REPORT_FILE_TEMPLATE}$CMD"
fi > /dev/null 2>&1
exit $RESULT