On 20/05/14 15:48, Alexey Shumkin wrote: > Added in 0a144b3 (t4205, t6006: add failing tests for the case when > i18n.logOutputEncoding is set, 2014-05-19) tests give no error > (somehow) with Bash as /bin/sh but fail for some other shells. > > Quote format strings to avoid errors. > > Signed-off-by: Alexey Shumkin <Alex.Crezoff@xxxxxxxxx> > Suggested-by: Ramsay Jones <ramsay@xxxxxxxxxxxxxxxxxxx> > --- > t/t6006-rev-list-format.sh | 14 +++++++------- > 1 file changed, 7 insertions(+), 7 deletions(-) > > diff --git a/t/t6006-rev-list-format.sh b/t/t6006-rev-list-format.sh > index c6e9a73..19434ad 100755 > --- a/t/t6006-rev-list-format.sh > +++ b/t/t6006-rev-list-format.sh > @@ -149,7 +149,7 @@ commit $head1 > $added > EOF > > -test_format subject-truncated %<($truncate_count,trunc)%s <<EOF > +test_format subject-truncated "%<($truncate_count,trunc)%s" <<EOF > commit $head2 > changed (ge${changed_utf8_part}ndert).. > commit $head1 > @@ -259,7 +259,7 @@ commit $head1 > $added_iso88591 > EOF > > -test_format complex-subject-trunc %<($truncate_count,trunc)%s <<EOF > +test_format complex-subject-trunc "%<($truncate_count,trunc)%s" <<EOF > commit $head3 > Test printing of c.. > commit $head2 > @@ -268,7 +268,7 @@ commit $head1 > added (hinzugef${added_utf8_part_iso88591}gt.. > EOF > > -test_format complex-subject-mtrunc %<($truncate_count,mtrunc)%s <<EOF > +test_format complex-subject-mtrunc "%<($truncate_count,mtrunc)%s" <<EOF > commit $head3 > Test prin..ex bodies > commit $head2 > @@ -277,7 +277,7 @@ commit $head1 > added (hi..f${added_utf8_part_iso88591}gt) foo > EOF > > -test_format complex-subject-ltrunc %<($truncate_count,ltrunc)%s <<EOF > +test_format complex-subject-ltrunc "%<($truncate_count,ltrunc)%s" <<EOF > commit $head3 > .. of complex bodies > commit $head2 > @@ -314,7 +314,7 @@ commit $head1 > $added > EOF > > -test_format complex-subject-commitencoding-unset-trunc %<($truncate_count,trunc)%s <<EOF > +test_format complex-subject-commitencoding-unset-trunc "%<($truncate_count,trunc)%s" <<EOF > commit $head3 > Test printing of c.. > commit $head2 > @@ -323,7 +323,7 @@ commit $head1 > added (hinzugef${added_utf8_part}gt.. > EOF > > -test_format complex-subject-commitencoding-unset-mtrunc %<($truncate_count,mtrunc)%s <<EOF > +test_format complex-subject-commitencoding-unset-mtrunc "%<($truncate_count,mtrunc)%s" <<EOF > commit $head3 > Test prin..ex bodies > commit $head2 > @@ -332,7 +332,7 @@ commit $head1 > added (hi..f${added_utf8_part}gt) foo > EOF > > -test_format complex-subject-commitencoding-unset-ltrunc %<($truncate_count,ltrunc)%s <<EOF > +test_format complex-subject-commitencoding-unset-ltrunc "%<($truncate_count,ltrunc)%s" <<EOF > commit $head3 > .. of complex bodies > commit $head2 > Yep, actually using string quotes works just as well! :-P Thanks! ATB, Ramsay Jones -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html