diff mbox

[10/11] hello_world: print out full path of missing MAMBO_BINARY

Message ID 20161222062036.8454-11-stewart@linux.vnet.ibm.com
State Accepted
Headers show

Commit Message

Stewart Smith Dec. 22, 2016, 6:20 a.m. UTC
Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
---
 test/hello_world/run_mambo_hello_world.sh    | 2 +-
 test/hello_world/run_mambo_p9_hello_world.sh | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
diff mbox

Patch

diff --git a/test/hello_world/run_mambo_hello_world.sh b/test/hello_world/run_mambo_hello_world.sh
index 7bde597..5b63ce0 100755
--- a/test/hello_world/run_mambo_hello_world.sh
+++ b/test/hello_world/run_mambo_hello_world.sh
@@ -10,7 +10,7 @@  if [ -z "$MAMBO_BINARY" ]; then
 fi
 
 if [ ! -x "$MAMBO_PATH/$MAMBO_BINARY" ]; then
-    echo 'Could not find executable MAMBO_BINARY. Skipping hello_world test';
+    echo "Could not find executable MAMBO_BINARY ($MAMBO_PATH/$MAMBO_BINARY). Skipping hello_world test";
     exit 0;
 fi
 
diff --git a/test/hello_world/run_mambo_p9_hello_world.sh b/test/hello_world/run_mambo_p9_hello_world.sh
index 7f9c642..1653a52 100755
--- a/test/hello_world/run_mambo_p9_hello_world.sh
+++ b/test/hello_world/run_mambo_p9_hello_world.sh
@@ -10,7 +10,7 @@  if [ -z "$MAMBO_BINARY" ]; then
 fi
 
 if [ ! -x "$MAMBO_PATH/$MAMBO_BINARY" ]; then
-    echo 'Could not find executable MAMBO_BINARY. Skipping hello_world test';
+    echo "Could not find executable MAMBO_BINARY ($MAMBO_PATH/$MAMBO_BINARY). Skipping hello_world test";
     exit 0;
 fi