Skip to content

Commit

Permalink
tests: Remove incorrect check in "ovn -- external logical port"
Browse files Browse the repository at this point in the history
This check passed because it checked the exit status of "wc -l", which
always succeeds.  It meant to check what "wc -l" output, but if it's
fixed to do that, then the test fails because it's checking something
that's wrong.  Thus, this commit just removes the check.

Signed-off-by: Ben Pfaff <blp@ovn.org>
  • Loading branch information
blp committed Nov 2, 2020
1 parent a73d3e8 commit f45c1bb
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions tests/ovn.at
Expand Up @@ -14518,11 +14518,6 @@ ovn-nbctl ha-chassis-group-add-chassis hagrp1 hv1 30

hagrp1_uuid=`ovn-nbctl --bare --columns _uuid find ha_chassis_group name="hagrp1"`

# There should be 1 HA_Chassis rows with chassis sets
OVS_WAIT_UNTIL([ovn-sbctl list ha_chassis | grep chassis | awk '{print $3}' \
| grep '-' | wc -l ], [0], [1
])

as hv1
ovs-vsctl add-br br-phys
ovn_attach n1 br-phys 192.168.0.1
Expand Down

0 comments on commit f45c1bb

Please sign in to comment.