summaryrefslogtreecommitdiffstats
path: root/test/hello_world/run_qemu_hello_world.sh
diff options
context:
space:
mode:
Diffstat (limited to 'test/hello_world/run_qemu_hello_world.sh')
-rwxr-xr-xtest/hello_world/run_qemu_hello_world.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/hello_world/run_qemu_hello_world.sh b/test/hello_world/run_qemu_hello_world.sh
index 3f0aa55a..e8d31760 100755
--- a/test/hello_world/run_qemu_hello_world.sh
+++ b/test/hello_world/run_qemu_hello_world.sh
@@ -5,7 +5,7 @@ if [ -z "$QEMU_BIN" ]; then
QEMU_BIN="qemu-system-ppc64"
fi
-if [ ! `command -v $QEMU_BIN` ]; then
+if [ ! $(command -v $QEMU_BIN) ]; then
echo "Could not find executable QEMU_BIN ($QEMU_BIN). Skipping hello_world test";
exit 0;
fi
@@ -15,13 +15,13 @@ if [ -n "$KERNEL" ]; then
exit 0;
fi
-if [ ! `command -v expect` ]; then
+if [ ! $(command -v expect) ]; then
echo 'Could not find expect binary. Skipping hello_world test';
exit 0;
fi
-export SKIBOOT_ZIMAGE=`pwd`/test/hello_world/hello_kernel/hello_kernel
+export SKIBOOT_ZIMAGE=$(pwd)/test/hello_world/hello_kernel/hello_kernel
t=$(mktemp) || exit 1
OpenPOWER on IntegriCloud