forked from microsoft/vstest
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix assembly loading in symbol loader (microsoft#340)
* Fix assembly loading in symbol loader. (microsoft#332) Instead of attempting to load the test assembly, try to query for it. It should have been already loaded by the test adapter. In netcoreapp1.1, attempting to load the same executable within itself throws. * Add error tracing for symbol parse failure. * Fix platform tests for objectmodel. * Fix debug type. Copy manifest file and comcomponents to output directory.
- Loading branch information
Showing
8 changed files
with
30,170 additions
and
108 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT license. See LICENSE file in the project root for full license information. | ||
|
||
namespace SimpleClassLibrary | ||
{ | ||
using System.Diagnostics; | ||
using System.Threading.Tasks; | ||
|
||
public class Class1 | ||
{ | ||
public void PassingTest() | ||
{ | ||
Debug.Assert(2 == 2); | ||
} | ||
|
||
public async Task AsyncTestMethod() | ||
{ | ||
await Task.CompletedTask; | ||
} | ||
|
||
public void OverLoadedMethod() | ||
{ | ||
} | ||
|
||
public void OverLoadedMethod(string name) | ||
{ | ||
} | ||
} | ||
} |
Oops, something went wrong.