When I run dotnet test ... --blame-hang-timeout 2000
it generates a 'Hang Dump' which grows into gigabytes. This feature is available since .NET 5.0, and the Microsoft pages refer to a DUMP_TYPE
. Because of this size, I want to disable the generation of this dump but keeping the --blame-hang-timeout
. However, I don't see any information on this DUMP_TYPE
. Is it possible to disable or limit the dump information?
Asked
Active
Viewed 447 times
1

Timon Post
- 2,779
- 1
- 17
- 32
-
1I read _The type of crash dump to be collected. It should be full, mini, or none. When **none** is specified, test host is terminated on timeout, but no dump is collected. Implies --blame-hang._ Are you looking at a translated version? `none` is probably the dump type you want – xanatos Jan 28 '21 at 20:39
-
O wow, must have overlooked it. Thanks for pointing it out! – Timon Post Jan 28 '21 at 20:48
-
I tried it out, but when having '--blame-hang-dump-type none' it still generates those folders. – Timon Post Jan 29 '21 at 07:47
-
1Opened an issue: https://github.com/dotnet/sdk/issues/15555 – Timon Post Jan 29 '21 at 08:27