From 558cf538a140e1eb7d206bc26cd72bb31585e10c Mon Sep 17 00:00:00 2001 From: Johannes Schindelin Date: Mon, 27 Jan 2025 17:08:18 +0100 Subject: [PATCH] fixup??? survey: stub in new experimental 'git-survey' command Someone decided in upstream Git that it would be a good idea to change all of the usages going to `stdout` instead of `stderr` now, as if that was a good idea. I guess backwards-compatibility is only upheld if a security weakness would be fixed otherwise... tsk, tsk, tsk. Signed-off-by: Johannes Schindelin --- t/t8100-git-survey.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/t8100-git-survey.sh b/t/t8100-git-survey.sh index 8c6edfcae0c6c2..822d139843cca1 100755 --- a/t/t8100-git-survey.sh +++ b/t/t8100-git-survey.sh @@ -11,7 +11,7 @@ export TEST_PASSES_SANITIZE_LEAK . ./test-lib.sh test_expect_success 'git survey -h shows experimental warning' ' - test_expect_code 129 git survey -h 2>usage && + test_expect_code 129 git survey -h >usage && grep "EXPERIMENTAL!" usage '