From: Ben Pfaff Date: Thu, 25 Feb 2016 22:24:20 +0000 (-0800) Subject: tests: Fix use of "test". X-Git-Url: http://git.cascardo.eti.br/?p=cascardo%2Fovs.git;a=commitdiff_plain;h=92f9822b0d9454540b710e5818e4a058ff663ce7 tests: Fix use of "test". Only = is portable for testing equality, == is a nonportable extension. Signed-off-by: Ben Pfaff Acked-by: Russell Bryant --- diff --git a/tests/ovn.at b/tests/ovn.at index 0e717320f..5cb7d8b94 100644 --- a/tests/ovn.at +++ b/tests/ovn.at @@ -634,7 +634,7 @@ test_arp() { hv=`vif_to_hv $inport` as $hv ovs-appctl netdev-dummy/receive vif$inport $request - if test X$reply_ha == X; then + if test X$reply_ha = X; then # Expect to receive the broadcast ARP on the other logical switch ports # if no reply is expected. local i j