Reported-by: Stuart Cardall <[email protected]> Reported-at: http://openvswitch.org/pipermail/discuss/2016-September/022803.html Signed-off-by: Ben Pfaff <[email protected]> --- AUTHORS | 1 + tests/ovn.at | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/AUTHORS b/AUTHORS index 371c683..a7ae253 100644 --- a/AUTHORS +++ b/AUTHORS @@ -444,6 +444,7 @@ Sabyasachi Sengupta [email protected] Salvatore Cambria [email protected] Soner Sevinc [email protected] Stephen Hemminger [email protected] +Stuart Cardall [email protected] Suganya Ramachandran [email protected] Taekho Nam [email protected] Takayuki HAMA [email protected] diff --git a/tests/ovn.at b/tests/ovn.at index 677ab46..6a8e291 100644 --- a/tests/ovn.at +++ b/tests/ovn.at @@ -4392,9 +4392,9 @@ test_datapath_in_of_rules() { # magic keyword that represents one, based on the exit status of # a quiet grep if test $expect_datapath != 0; then - AT_CHECK([grep --quiet -i 'metadata=' stdout], [0], [ignore-nolog]) + AT_CHECK([grep -q -i 'metadata=' stdout], [0], [ignore-nolog]) else - AT_CHECK([grep --quiet -i 'metadata=' stdout], [1], [ignore-nolog]) + AT_CHECK([grep -q -i 'metadata=' stdout], [1], [ignore-nolog]) fi } -- 2.1.3 _______________________________________________ dev mailing list [email protected] http://openvswitch.org/mailman/listinfo/dev
