aboutsummaryrefslogtreecommitdiff
path: root/test/hello_world
diff options
context:
space:
mode:
Diffstat (limited to 'test/hello_world')
-rwxr-xr-xtest/hello_world/run_hello_world.sh7
1 files changed, 6 insertions, 1 deletions
diff --git a/test/hello_world/run_hello_world.sh b/test/hello_world/run_hello_world.sh
index dcb79a8..f72c402 100755
--- a/test/hello_world/run_hello_world.sh
+++ b/test/hello_world/run_hello_world.sh
@@ -14,7 +14,12 @@ if [ ! -x "$MAMBO_PATH/$MAMBO_BINARY" ]; then
exit 0;
fi
-if [ ! -x `which expect` ]; then
+if [ -n "$KERNEL" ]; then
+ echo 'Please rebuild skiboot without KERNEL set. Skipping hello_world test';
+ exit 0;
+fi
+
+if [ ! `command -v expect` ]; then
echo 'Could not find expect binary. Skipping hello_world test';
exit 0;
fi