A rebuild of git 1:2.28.0-1 reports test failures and FTBFS on both unstable
and stable.
| expecting success of 0500.3 'progress display breaks long lines #1':
| sed -e "s/Z$//" >expect <<\EOF &&
| Working hard.......2.........3.........4.........5.........6: 0% (100/100000)<CR>
| Working hard.......2.........3.........4.........5.........6: 1% (1000/100000)<CR>
| Working hard.......2.........3.........4.........5.........6: Z
| 10% (10000/100000)<CR>
| 100% (100000/100000)<CR>
| 100% (100000/100000), done.
| EOF
|
| cat >in <<-\EOF &&
| progress 100
| progress 1000
| progress 10000
| progress 100000
| EOF
| test-tool progress --total=100000 \
| "Working hard.......2.........3.........4.........5.........6" \
| <in 2>stderr &&
|
| show_cr <stderr >out &&
| test_i18ncmp expect out
|
| --- expect 2020-10-18 18:39:17.784594270 +0000
| +++ out 2020-10-18 18:39:17.788594291 +0000
| @@ -1,6 +1,6 @@ -Working hard.......2.........3.........4.........5.........6: 0% (100/100000)<CR> -Working hard.......2.........3.........4.........5.........6: 1% (1000/100000)<CR> -Working hard.......2.........3.........4.........5.........6:
| +Working hard.......2.........3.........4.........5.........6: + 0% (100/100000)<CR> + 1% (1000/100000)<CR>
| 10% (10000/100000)<CR> 100% (100000/100000)<CR>
| 100% (100000/100000), done.
| not ok 3 - progress display breaks long lines #1 #
| # sed -e "s/Z$//" >expect <<\EOF && # Working hard.......2.........3.........4.........5.........6: 0% (100/100000)<CR> # Working hard.......2.........3.........4.........5.........6: 1% (1000/100000)<CR>
| # Working hard.......2.........3.........4.........5.........6: Z # 10% (10000/100000)<CR>
| # 100% (100000/100000)<CR> # 100% (100000/100000), done.
| # EOF #
| # cat >in <<-\EOF && # progress 100
| # progress 1000
| # progress 10000
| # progress 100000
| # EOF
| # test-tool progress --total=100000 \
| # "Working hard.......2.........3.........4.........5.........6" \
| # <in 2>stderr &&
| #
| # show_cr <stderr >out &&
| # test_i18ncmp expect out
| #