Skip to content
This repository was archived by the owner on Apr 10, 2018. It is now read-only.

Commit 77200fa

Browse files
committed
Skip tests that require multiple cores
1 parent 766aa38 commit 77200fa

7 files changed

+32
-12
lines changed

RestSharp.Portable.Test/AuthenticationTests.cs

-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424

2525
namespace RestSharp.Portable.Test
2626
{
27-
[CLSCompliant(false)]
2827
public class AuthenticationTests : RestSharpTests
2928
{
3029
[Theory]

RestSharp.Portable.Test/GuardTests.cs

+12-4
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,11 @@ namespace RestSharp.Portable.Test
1313
{
1414
public class GuardTests
1515
{
16-
[Fact]
16+
[SkippableFact]
1717
public void TestGuardLock1()
1818
{
19+
Skip.IfNot(Environment.ProcessorCount > 1, "Only works on multi-core systems");
20+
1921
for (int i = 0; i != 10; ++i)
2022
{
2123
using (var evt = new AutoResetEvent(false))
@@ -55,9 +57,11 @@ public void TestGuardLock1()
5557
}
5658
}
5759

58-
[Fact]
60+
[SkippableFact]
5961
public void TestGuardLock2()
6062
{
63+
Skip.IfNot(Environment.ProcessorCount > 1, "Only works on multi-core systems");
64+
6165
for (int i = 0; i != 10; ++i)
6266
{
6367
using (var guard = new AsyncLock())
@@ -87,9 +91,11 @@ public void TestGuardLock2()
8791
}
8892
}
8993

90-
[Fact]
94+
[SkippableFact]
9195
public async Task TestGuardLockMultipleDispose()
9296
{
97+
Skip.IfNot(Environment.ProcessorCount > 1, "Only works on multi-core systems");
98+
9399
var guard = new AsyncLock();
94100
var task = Task.Run(
95101
async () =>
@@ -106,9 +112,11 @@ public async Task TestGuardLockMultipleDispose()
106112
Assert.Equal(Int32.MaxValue, await task);
107113
}
108114

109-
[Fact]
115+
[SkippableFact]
110116
public async Task TestGuardLockEarlyDispose()
111117
{
118+
Skip.IfNot(Environment.ProcessorCount > 1, "Only works on multi-core systems");
119+
112120
var cts = new CancellationTokenSource();
113121
var guard = new AsyncLock();
114122
var task = Task.Run(

RestSharp.Portable.Test/IssueTests.cs

+6-3
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313

1414
namespace RestSharp.Portable.Test
1515
{
16-
[CLSCompliant(false)]
1716
public class IssueTests : RestSharpTests
1817
{
1918
[Theory(DisplayName = "Issue 12, Post 1 parameter")]
@@ -88,11 +87,13 @@ public void TestIssue16(Type factoryType)
8887
}
8988
}
9089

91-
[Theory(DisplayName = "Issue 19")]
90+
[SkippableTheory(DisplayName = "Issue 19")]
9291
[InlineData(typeof(DefaultHttpClientFactory))]
9392
[InlineData(typeof(WebRequestHttpClientFactory))]
9493
public void TestIssue19(Type factoryType)
9594
{
95+
Skip.IfNot(Environment.ProcessorCount > 1, "Only works on multi-core systems");
96+
9697
using (var client = new RestClient("http://httpbin.org/")
9798
{
9899
HttpClientFactory = CreateClientFactory(factoryType, false),
@@ -140,11 +141,13 @@ public async Task TestIssue23(Type factoryType)
140141
}
141142
}
142143

143-
[Theory(DisplayName = "Issue 25")]
144+
[SkippableTheory(DisplayName = "Issue 25")]
144145
[InlineData(typeof(DefaultHttpClientFactory))]
145146
[InlineData(typeof(WebRequestHttpClientFactory))]
146147
public void TestIssue25(Type factoryType)
147148
{
149+
Skip.IfNot(Environment.ProcessorCount > 1, "Only works on multi-core systems");
150+
148151
using (var client = new RestClient("http://httpbin.org/")
149152
{
150153
HttpClientFactory = CreateClientFactory(factoryType, false),

RestSharp.Portable.Test/OtherTests.cs

-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414

1515
namespace RestSharp.Portable.Test
1616
{
17-
[CLSCompliant(false)]
1817
public class OtherTests : RestSharpTests
1918
{
2019
[Theory]

RestSharp.Portable.Test/PostHeaderRequestTests.cs

-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111

1212
namespace RestSharp.Portable.Test
1313
{
14-
[CLSCompliant(false)]
1514
public class PostHeaderRequestTests : RestSharpTests
1615
{
1716
[Theory]

RestSharp.Portable.Test/RestSharp.Portable.Test.csproj

+12-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<Import Project="..\packages\Xunit.SkippableFact.1.2.14\build\net45\Xunit.SkippableFact.props" Condition="Exists('..\packages\Xunit.SkippableFact.1.2.14\build\net45\Xunit.SkippableFact.props')" />
34
<Import Project="..\packages\xunit.runner.visualstudio.2.1.0\build\net20\xunit.runner.visualstudio.props" Condition="Exists('..\packages\xunit.runner.visualstudio.2.1.0\build\net20\xunit.runner.visualstudio.props')" />
45
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
56
<PropertyGroup>
@@ -20,15 +21,15 @@
2021
<DebugType>full</DebugType>
2122
<Optimize>false</Optimize>
2223
<OutputPath>bin\Debug\</OutputPath>
23-
<DefineConstants>DEBUG;TRACE</DefineConstants>
24+
<DefineConstants>TRACE;DEBUG;NOT_CLS_COMPLIANT</DefineConstants>
2425
<ErrorReport>prompt</ErrorReport>
2526
<WarningLevel>4</WarningLevel>
2627
</PropertyGroup>
2728
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
2829
<DebugType>pdbonly</DebugType>
2930
<Optimize>true</Optimize>
3031
<OutputPath>bin\Release\</OutputPath>
31-
<DefineConstants>TRACE</DefineConstants>
32+
<DefineConstants>TRACE;NOT_CLS_COMPLIANT</DefineConstants>
3233
<ErrorReport>prompt</ErrorReport>
3334
<WarningLevel>4</WarningLevel>
3435
</PropertyGroup>
@@ -58,6 +59,10 @@
5859
<Reference Include="Microsoft.CSharp" />
5960
<Reference Include="System.Data" />
6061
<Reference Include="System.Xml" />
62+
<Reference Include="Validation, Version=2.2.0.0, Culture=neutral, PublicKeyToken=2fc06f0d701809a7, processorArchitecture=MSIL">
63+
<HintPath>..\packages\Validation.2.2.8\lib\dotnet\Validation.dll</HintPath>
64+
<Private>True</Private>
65+
</Reference>
6166
<Reference Include="xunit.abstractions, Version=2.0.0.0, Culture=neutral, PublicKeyToken=8d05b1bb7a6fdb6c, processorArchitecture=MSIL">
6267
<HintPath>..\packages\xunit.abstractions.2.0.0\lib\net35\xunit.abstractions.dll</HintPath>
6368
</Reference>
@@ -73,6 +78,10 @@
7378
<HintPath>..\packages\xunit.extensibility.execution.2.1.0\lib\net45\xunit.execution.desktop.dll</HintPath>
7479
<Private>True</Private>
7580
</Reference>
81+
<Reference Include="Xunit.SkippableFact, Version=1.2.0.0, Culture=neutral, PublicKeyToken=b2b52da82b58eb73, processorArchitecture=MSIL">
82+
<HintPath>..\packages\Xunit.SkippableFact.1.2.14\lib\net45\Xunit.SkippableFact.dll</HintPath>
83+
<Private>True</Private>
84+
</Reference>
7685
</ItemGroup>
7786
<ItemGroup>
7887
<Compile Include="..\GlobalAssemblyInfo.cs">
@@ -134,6 +143,7 @@
134143
<ErrorText>Dieses Projekt verweist auf mindestens ein NuGet-Paket, das auf diesem Computer fehlt. Verwenden Sie die Wiederherstellung von NuGet-Paketen, um die fehlenden Dateien herunterzuladen. Weitere Informationen finden Sie unter "http://go.microsoft.com/fwlink/?LinkID=322105". Die fehlende Datei ist "{0}".</ErrorText>
135144
</PropertyGroup>
136145
<Error Condition="!Exists('..\packages\xunit.runner.visualstudio.2.1.0\build\net20\xunit.runner.visualstudio.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\xunit.runner.visualstudio.2.1.0\build\net20\xunit.runner.visualstudio.props'))" />
146+
<Error Condition="!Exists('..\packages\Xunit.SkippableFact.1.2.14\build\net45\Xunit.SkippableFact.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Xunit.SkippableFact.1.2.14\build\net45\Xunit.SkippableFact.props'))" />
137147
</Target>
138148
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
139149
Other similar extension points exist, see Microsoft.Common.targets.

RestSharp.Portable.Test/packages.config

+2
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,13 @@
22
<packages>
33
<package id="BouncyCastle" version="1.7.0" targetFramework="net45" />
44
<package id="Newtonsoft.Json" version="7.0.1" targetFramework="net45" />
5+
<package id="Validation" version="2.2.8" targetFramework="net45" />
56
<package id="xunit" version="2.1.0" targetFramework="net45" />
67
<package id="xunit.abstractions" version="2.0.0" targetFramework="net45" />
78
<package id="xunit.assert" version="2.1.0" targetFramework="net45" />
89
<package id="xunit.core" version="2.1.0" targetFramework="net45" />
910
<package id="xunit.extensibility.core" version="2.1.0" targetFramework="net45" />
1011
<package id="xunit.extensibility.execution" version="2.1.0" targetFramework="net45" />
1112
<package id="xunit.runner.visualstudio" version="2.1.0" targetFramework="net45" />
13+
<package id="Xunit.SkippableFact" version="1.2.14" targetFramework="net45" />
1214
</packages>

0 commit comments

Comments
 (0)