Re: [PATCH v11 1/4] test-parse-options: print quiet as integer

2016-03-31 Thread Pranit Bauva
On Thu, Mar 31, 2016 at 11:49 PM, Junio C Hamano wrote: > Pranit Bauva writes: > >> Current implementation of parse-options.c treats OPT__QUIET() as integer >> and not boolean and thus it is more appropriate to print it as integer >> to avoid confusion. >> >> While at it, fix some style issues. >

Re: [PATCH v11 1/4] test-parse-options: print quiet as integer

2016-03-31 Thread Junio C Hamano
Pranit Bauva writes: > Current implementation of parse-options.c treats OPT__QUIET() as integer > and not boolean and thus it is more appropriate to print it as integer > to avoid confusion. > > While at it, fix some style issues. I counted the changes in t0040 and you have _more_ style fixes th

[PATCH v11 1/4] test-parse-options: print quiet as integer

2016-03-31 Thread Pranit Bauva
Current implementation of parse-options.c treats OPT__QUIET() as integer and not boolean and thus it is more appropriate to print it as integer to avoid confusion. While at it, fix some style issues. --- t/t0040-parse-options.sh | 94 test-parse-op