summaryrefslogtreecommitdiffstats
path: root/scripts/qemuimage-tests/tools/bash.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/qemuimage-tests/tools/bash.sh')
-rw-r--r--scripts/qemuimage-tests/tools/bash.sh17
1 files changed, 0 insertions, 17 deletions
diff --git a/scripts/qemuimage-tests/tools/bash.sh b/scripts/qemuimage-tests/tools/bash.sh
deleted file mode 100644
index f6958f0e7e..0000000000
--- a/scripts/qemuimage-tests/tools/bash.sh
+++ /dev/null
@@ -1,17 +0,0 @@
1#!/bin/sh
2# bash test script running in qemu
3#
4# Author: veera <veerabrahmamvr@huawei.com>
5#
6# This file is licensed under the GNU General Public License,
7# Version 2.
8#
9
10which bash
11if [ $? -eq 0 ]; then
12 echo "QEMU: bash is exist in the target by default"
13 exit 0
14else
15 echo "QEMU: No bash command in the qemu target"
16 exit 1
17fi