test: fix bats dealing with std* streams

Signed-off-by: Antonio Murdaca <runcom@redhat.com>
This commit is contained in:
Antonio Murdaca 2017-04-21 13:42:59 +02:00
parent 49f3f2ac7f
commit 7985f7ad81
No known key found for this signature in database
GPG key ID: B2BEAD150DE936B9

View file

@ -292,9 +292,10 @@ function check_pod_cidr() {
fullnetns=`ocic pod status --id $1 | grep namespace | cut -d ' ' -f 3` fullnetns=`ocic pod status --id $1 | grep namespace | cut -d ' ' -f 3`
netns=`basename $fullnetns` netns=`basename $fullnetns`
ip netns exec $netns ip addr show dev eth0 scope global | grep $POD_CIDR_MASK run ip netns exec $netns ip addr show dev eth0 scope global 2>&1
echo "$output"
echo $? [ "$status" -eq 0 ]
[[ "$output" =~ $POD_CIDR_MASK ]]
} }
function parse_pod_ip() { function parse_pod_ip() {