Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit 568b7d7

Browse files
committed
Merge pull request #1979 from stephentoub/immut_activeissue
Disable ImmutableSortedSetTest.EmptyTest test
2 parents 3c7fc3f + 573ee90 commit 568b7d7

File tree

4 files changed

+383
-49
lines changed

4 files changed

+383
-49
lines changed

src/System.Collections.Immutable/tests/ImmutableSortedSetTest.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ public void RandomOperationsTest()
7777
}
7878

7979
[Fact]
80+
[ActiveIssue(780)]
8081
public void EmptyTest()
8182
{
8283
this.EmptyTestHelper(Empty<int>(), 5, null);

src/System.Collections.Immutable/tests/System.Collections.Immutable.Tests.csproj

Lines changed: 3 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -4,34 +4,17 @@
44
<PropertyGroup>
55
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
66
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7-
<AssemblyName>System.Collections.Immutable.Tests</AssemblyName>
8-
<SchemaVersion>2.0</SchemaVersion>
97
<ProjectGuid>{95DFC527-4DC1-495E-97D7-E94EE1F7140D}</ProjectGuid>
108
<OutputType>Library</OutputType>
119
<AppDesignerFolder>Properties</AppDesignerFolder>
1210
<RootNamespace>System.Collections.Immutable.Test</RootNamespace>
13-
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
14-
<TargetFrameworkProfile>Profile259</TargetFrameworkProfile>
11+
<AssemblyName>System.Collections.Immutable.Tests</AssemblyName>
1512
<FileAlignment>512</FileAlignment>
16-
<ReferencePath>$(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages</ReferencePath>
17-
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\</SolutionDir>
18-
<RestorePackages>true</RestorePackages>
1913
<NuGetPackageImportStamp>7a9bfb7d</NuGetPackageImportStamp>
20-
<!-- DNX fails to resolve assets from .NETPortable profiles if the PCL targeting pack is
21-
not installed on the machine, as is the case for our official build machines.
22-
https://github.com/aspnet/dnx/issues/1814 -->
23-
<NugetTargetFrameworkMoniker>DNXCore,Version=v5.0</NugetTargetFrameworkMoniker>
2414
</PropertyGroup>
2515
<!-- Default configurations to help VS understand the configurations -->
26-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
27-
</PropertyGroup>
28-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
29-
</PropertyGroup>
30-
<ItemGroup>
31-
<CodeAnalysisDependentAssemblyPaths Condition=" '$(VS100COMNTOOLS)' != '' " Include="$(VS100COMNTOOLS)..\IDE\PrivateAssemblies">
32-
<Visible>False</Visible>
33-
</CodeAnalysisDependentAssemblyPaths>
34-
</ItemGroup>
16+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' " />
17+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' " />
3518
<ItemGroup>
3619
<Compile Include="BadHasher.cs" />
3720
<Compile Include="EverythingEqual.cs" />
Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
{
22
"dependencies": {
3+
"System.Diagnostics.Contracts": "4.0.0-beta-*",
4+
"System.Runtime": "4.0.20-beta-*",
35
"xunit": "2.0.0-beta5-build2785",
46
"xunit.abstractions.netcore": "1.0.0-prerelease",
57
"xunit.assert": "2.0.0-beta5-build2785",
6-
"xunit.core.netcore": "1.0.1-prerelease"
8+
"xunit.core.netcore": "1.0.1-prerelease",
9+
"xunit.netcore.extensions": "1.0.0-prerelease-*"
710
},
811
"frameworks": {
9-
".NETPortable,Version=v4.5,Profile=Profile259": {},
1012
"dnxcore50": {}
1113
}
1214
}

0 commit comments

Comments
 (0)