diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/pkg-status.test | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/tests/pkg-status.test b/tests/pkg-status.test index 3e27294..511cab2 100644 --- a/tests/pkg-status.test +++ b/tests/pkg-status.test @@ -197,7 +197,12 @@ else : $clone_root_cfg; $rep_add "$rep/libbar.git#master" && $rep_add "$rep/style.git#master"; - $rep_fetch; + + # Convert specific warnings to infos as we expect them to appear. This, in + # particular, prevents bbot workers to set task result status to warning. + # + $rep_fetch 2>&1 | \ + sed -e 's/warning: (fetching (over|whole) .*)/info: \1/' >&2 2>!; $* style-basic >'unknown' } |