Re: [PATCH v5 2/9] test: add test_write_lines helper

2014-04-24 Thread Junio C Hamano
Jonathan Nieder writes: > Michael S. Tsirkin wrote: > >> --- a/t/test-lib-functions.sh >> +++ b/t/test-lib-functions.sh >> @@ -712,6 +712,11 @@ test_ln_s_add () { >> fi >> } >> >> +# This function writes out its parameters, one per line >> +test_write_lines () { >> +printf "%s\n" "$@"

Re: [PATCH v5 2/9] test: add test_write_lines helper

2014-04-24 Thread Jonathan Nieder
Michael S. Tsirkin wrote: > --- a/t/test-lib-functions.sh > +++ b/t/test-lib-functions.sh > @@ -712,6 +712,11 @@ test_ln_s_add () { > fi > } > > +# This function writes out its parameters, one per line > +test_write_lines () { > + printf "%s\n" "$@"; > +} > + Thanks for fixing this.

[PATCH v5 2/9] test: add test_write_lines helper

2014-04-24 Thread Michael S. Tsirkin
API and implementation as suggested by Junio. Signed-off-by: Michael S. Tsirkin --- t/test-lib-functions.sh | 5 + 1 file changed, 5 insertions(+) diff --git a/t/test-lib-functions.sh b/t/test-lib-functions.sh index aeae3ca..0e21275 100644 --- a/t/test-lib-functions.sh +++ b/t/test-lib-func