summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorStefan Stanacar <stefanx.stanacar@intel.com>2013-05-15 10:42:18 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-05-16 00:23:37 +0300
commitc3fabef454342e991a6dfd73f7037e5cf7731b09 (patch)
tree9eb4ea67aa0d455c82142e4e6372eaf2062e6c06 /scripts
parent27069483c30c9458eccf8e89fd581750bbe1f522 (diff)
downloadast2050-yocto-poky-c3fabef454342e991a6dfd73f7037e5cf7731b09.zip
ast2050-yocto-poky-c3fabef454342e991a6dfd73f7037e5cf7731b09.tar.gz
qemuimage-testlib: pass optional timeout to ssh function
Sometimes we need to change the timeout used by the function for certain kinds of tests. (From OE-Core rev: 21950ff5eb032fefc4753bd68af57f655d0c61f2) Signed-off-by: Stefan Stanacar <stefanx.stanacar@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/qemuimage-testlib13
1 files changed, 9 insertions, 4 deletions
diff --git a/scripts/qemuimage-testlib b/scripts/qemuimage-testlib
index 1fa9b4e..475231b 100755
--- a/scripts/qemuimage-testlib
+++ b/scripts/qemuimage-testlib
@@ -144,10 +144,15 @@ EOF`
# function to run command in $ip_addr via ssh
Test_SSH()
{
- local ip_addr=$1
- shift
- local command=$@
- local time_out=60
+ local ip_addr="$1"
+ local command="$2"
+
+ if [ $# -eq 3 ]; then
+ local time_out=$3
+ else
+ local time_out=60
+ fi
+
local ret=0
local exp_cmd=`cat << EOF
eval spawn ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no root@$ip_addr "$command"
OpenPOWER on IntegriCloud