t4040: remove test that succeeded for a wrong reason
commit5626558e639cb34a8e32f52260fa7d7393b1982c
authorJunio C Hamano <gitster@pobox.com>
Fri, 18 Aug 2023 23:59:31 +0000 (18 16:59 -0700)
committerJunio C Hamano <gitster@pobox.com>
Sat, 19 Aug 2023 00:01:12 +0000 (18 17:01 -0700)
tree60731c36d74a0739600458be5be3bbb5c04854b0
parente8efd863699c6927953ebff6cb317c5632b7324d
t4040: remove test that succeeded for a wrong reason

"diff-tree -b --exit-code" without "--patch" exits with 0 status,
not because it finds that the two input files are equivalent while
ignoring whitespaces, but because the implied "--raw" mode always
exits with 0 when whitespace tweaking options like "-b" and "-w"
are given, which is a long-standing bug.

We are about to fix it so that "--raw" and friends report the
differences with the exit status (even though they ignore the
whitespace tweaking options when producing their output), which
will make this test, which succeeded for a wrong reason, start
failing.  Remove it.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t4040-whitespace-status.sh