-
Notifications
You must be signed in to change notification settings - Fork 325
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add env variables in the incorrect place * Collect all dumps from temp dir * Try to build against net5.0 * Remove internals visibleto * Collect child crash dumps * Use procdump even on newer fmw to dump testhost * Fix collecting dumps * Get dumps only from guid dir * Hangdumps of children on Windows * Make it work on Linux * Children and suspend on mac * Fix * enabled oses * Fix * Fix unit tests and review feedback * Build is flaky * Fix tests for dotnet5 update
- Loading branch information
Showing
27 changed files
with
675 additions
and
166 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 23 additions & 0 deletions
23
src/Microsoft.TestPlatform.Extensions.BlameDataCollector/NetClientCrashDumper.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT license. See LICENSE file in the project root for full license information. | ||
|
||
namespace Microsoft.TestPlatform.Extensions.BlameDataCollector | ||
{ | ||
internal class NetClientCrashDumper : ICrashDumper | ||
{ | ||
public void AttachToTargetProcess(int processId, string outputDirectory, DumpTypeOption dumpType) | ||
{ | ||
// we don't need to do anything directly here, we setup the env variables | ||
// in the dumper configuration, including the path | ||
} | ||
|
||
public void DetachFromTargetProcess(int processId) | ||
{ | ||
// here we might consider renaming the files to have timestamp | ||
} | ||
|
||
public void WaitForDumpToFinish() | ||
{ | ||
} | ||
} | ||
} |
20 changes: 0 additions & 20 deletions
20
src/Microsoft.TestPlatform.Extensions.BlameDataCollector/NetClientDumper.cs
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.