From: Christian Couder Date: Sun, 31 Mar 2019 13:46:57 +0000 (+0200) Subject: t6050: redirect expected error output to a file X-Git-Tag: v2.22.0-rc0~26^2~2 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/587617016744448ace200804aed9edccb436f38e?ds=inline;hp=--cc t6050: redirect expected error output to a file Otherwise the error from `git rev-parse` is uselessly polluting the debug output. Redirecting to a file, instead of /dev/null, makes it possible to check that we got the error we expected, so let's check that too. Reviewed-by: Taylor Blau Helped-by: Eric Sunshine Helped-by: Ævar Arnfjörð Bjarmason Signed-off-by: Christian Couder Signed-off-by: Junio C Hamano --- 587617016744448ace200804aed9edccb436f38e diff --git a/t/t6050-replace.sh b/t/t6050-replace.sh index 41b177936e..948d278482 100755 --- a/t/t6050-replace.sh +++ b/t/t6050-replace.sh @@ -40,7 +40,8 @@ commit_peeling_shows_parents () test "$_found" = "$_parent" || return 1 _parent_number=$(( $_parent_number + 1 )) done && - test_must_fail git rev-parse --verify $_commit^$_parent_number + test_must_fail git rev-parse --verify $_commit^$_parent_number 2>err && + test_i18ngrep "Needed a single revision" err } commit_has_parents ()