Re: [ovs-dev] [PATCHv3 2/2] ovs-dev.py: Add option to run tests in parallel.

2014-06-03 Thread Joe Stringer
Thanks, I applied this with the following incremental: diff --git a/utilities/ovs-dev.py b/utilities/ovs-dev.py index fa74d57..efc65c8 100755 --- a/utilities/ovs-dev.py +++ b/utilities/ovs-dev.py @@ -145,8 +145,8 @@ commands.append(make) def check(): flags = "" -if options.parallel: -

Re: [ovs-dev] [PATCHv3 2/2] ovs-dev.py: Add option to run tests in parallel.

2014-06-03 Thread Ethan Jackson
Sorry to nit pick, but could we change the option name to "--jobs" and the abbreviated option to "-j". This is consistent with how make does it. Acked-by: Ethan Jackson On Tue, Jun 3, 2014 at 5:41 PM, Joe Stringer wrote: > Signed-off-by: Joe Stringer > --- > v3: Set the default to -j8. > v2:

[ovs-dev] [PATCHv3 2/2] ovs-dev.py: Add option to run tests in parallel.

2014-06-03 Thread Joe Stringer
Signed-off-by: Joe Stringer --- v3: Set the default to -j8. v2: Make it configurable. v1: First post. --- utilities/ovs-dev.py |6 ++ 1 file changed, 6 insertions(+) diff --git a/utilities/ovs-dev.py b/utilities/ovs-dev.py index 2c3af19..fa74d57 100755 --- a/utilities/ovs-dev.py +++ b/ut