msvc: avoid debug assertion windows in Debug Mode
authorJohannes Schindelin <johannes.schindelin@gmx.de>
Tue, 25 Jun 2019 14:49:42 +0000 (07:49 -0700)
committerJunio C Hamano <gitster@pobox.com>
Tue, 25 Jun 2019 17:46:58 +0000 (10:46 -0700)
commitf6a6393771b1f9676f6c019b6e9d35ef172a79e9
tree0a05a32c88ce4f6351c0874eda70da1a65b4311b
parent446df60367be5f3a97f7bac12071878d1fdbebd2
msvc: avoid debug assertion windows in Debug Mode

For regular debugging, it is pretty helpful when a debug assertion in a
running application triggers a window that offers to start the debugger.

However, when running the test suite, it is not so helpful, in
particular when the debug assertions are then suppressed anyway because
we disable the invalid parameter checking (via invalidcontinue.obj, see
the comment in config.mak.uname about that object for more information).

So let's simply disable that window in Debug Mode (it is already
disabled in Release Mode).

Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
compat/mingw.c