Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions GoogleTestAdapter/DiaResolver.Tests/PeParserTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ public void PeParser_X86StaticallyLinked_FindsEmbeddedPdbPath()
[TestCategory(Unit)]
public void PeParser_X86UnicodeName_FindsEmbeddedPdbPath()
{
string pdb = PeParser.ExtractPdbPath(TestResources.UnicodeExe, MockLogger.Object);
string expectedPdb = Path.GetFullPath(Path.ChangeExtension(TestResources.UnicodeExe, ".pdb"));
string pdb = PeParser.ExtractPdbPath(TestResources.UnicodeNameExe, MockLogger.Object);
string expectedPdb = Path.GetFullPath(Path.ChangeExtension(TestResources.UnicodeNameExe, ".pdb"));
pdb.Should().Be(expectedPdb);
}

Expand Down
2 changes: 1 addition & 1 deletion GoogleTestAdapter/GoogleTestAdapter.sln
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Packaging.TAfGT", "Packagin
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SemaphoreExe", "SemaphoreExe\SemaphoreExe.vcxproj", "{F48AD2EC-96B3-41C6-9F89-3542EC7A3D43}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "㐀㕵ExtAxCP936丂狛狜", "㐀㕵ExtAxCP936丂狛狜\㐀㕵ExtAxCP936丂狛狜.vcxproj", "{8B27FD59-F03C-468E-B878-CFFC7484B7F7}"
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "UnicodeNameExe", "UnicodeNameExe\UnicodeNameExe.vcxproj", "{8B27FD59-F03C-468E-B878-CFFC7484B7F7}"
EndProject
Global
GlobalSection(SharedMSBuildProjectFiles) = preSolution
Expand Down
2 changes: 1 addition & 1 deletion GoogleTestAdapter/Tests.Common/TestResources.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public static class TestResources
public const string AlwaysCrashingExe = GoogleTestAdapterBuildDir + @"CrashingExe\CrashingExe.exe";
public const string AlwaysFailingExe = GoogleTestAdapterBuildDir + @"FailingExe\FailingExe.exe";
public const string SemaphoreExe = GoogleTestAdapterBuildDir + @"SemaphoreExe\SemaphoreExe.exe";
public const string UnicodeExe = GoogleTestAdapterBuildDir + @"㐀㕵ExtAxCP936丂狛狜\㐀㕵ExtAxCP936丂狛狜.exe";
public const string UnicodeNameExe = GoogleTestAdapterBuildDir + @"UnicodeNameExe\㐀㕵ExtAxCP936丂狛狜.exe";

public const string Tests_DebugX86 = SampleTestsBuildDir + @"Debug\Tests_gta.exe";
public const string Tests_ReleaseX86 = SampleTestsBuildDir + @"Release\Tests_gta.exe";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,11 @@
<PropertyGroup Label="UserMacros" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<LinkIncremental>true</LinkIncremental>
<TargetName>㐀㕵ExtAxCP936丂狛狜</TargetName>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<LinkIncremental>false</LinkIncremental>
<TargetName>㐀㕵ExtAxCP936丂狛狜</TargetName>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<ClCompile>
Expand Down