Looks good, thanks! On Apr 9, 2014 5:42 PM, "YAMAMOTO Takashi" <yamam...@valinux.co.jp> wrote:
> Fix a botch in commit 7f12bdcc. > ("learn.at: Fix a race in "self-modifying flow with idle_timeout" test") > > Signed-off-by: YAMAMOTO Takashi <yamam...@valinux.co.jp> > --- > tests/learn.at | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/tests/learn.at b/tests/learn.at > index 42dd363..7245295 100644 > --- a/tests/learn.at > +++ b/tests/learn.at > @@ -352,7 +352,7 @@ for i in `seq 1 10`; do > # (i % 3 == 0) below is somehow arbitrary but chosen to ensure > # that we update the flow's 'used' frequently enough to prevent > # idle_timeout. > - if [[ $i -eq 1 -or $((i % 3)) -eq 0 ]]; then > + if [[ $i -eq 1 -o $((i % 3)) -eq 0 ]]; then > sleep 1 > fi > done > -- > 1.8.3.1 > > _______________________________________________ > dev mailing list > dev@openvswitch.org > http://openvswitch.org/mailman/listinfo/dev >
_______________________________________________ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev