test/nvmf: fix bash syntax error in common.sh

Change-Id: I3823bac5934b4a72560be3ce5eb2adf7cd019f09
Signed-off-by: Seth Howell <seth.howell@intel.com>
Reviewed-on: https://review.gerrithub.io/373661
Reviewed-by: Daniel Verkamp <daniel.verkamp@intel.com>
Tested-by: Daniel Verkamp <daniel.verkamp@intel.com>
This commit is contained in:
Seth Howell 2017-08-09 15:06:08 -07:00 committed by Daniel Verkamp
parent 45a8da55b6
commit ba21932806

View File

@ -91,7 +91,7 @@ function detect_rdma_nics()
function allocate_nic_ips()
{
let count=$NVMF_IP_LEAST_ADDR
for nic_name in $get_rdma_if_list; do
for nic_name in $(get_rdma_if_list); do
ip="$(get_ip_address $nic_name)"
if [ -z $ip ]; then
ifconfig $nic_name $NVMF_IP_PREFIX.$count netmask 255.255.255.0 up
@ -104,7 +104,7 @@ function allocate_nic_ips()
function get_available_rdma_ips()
{
for nic_name in $get_rdma_if_list; do
for nic_name in $(get_rdma_if_list); do
ifconfig $nic_name | grep "inet " | awk '{print $2}'
done
}