Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSantiago Fernandez Madero <safern@microsoft.com>2017-07-11 04:17:53 +0300
committerGitHub <noreply@github.com>2017-07-11 04:17:53 +0300
commit6223f37edf834a3be374f196cda27e6fa91889bd (patch)
treed61f70c0e20926e07c30f04fb5530fcbbe16ebd8 /src/System.Threading.ThreadPool
parent891e04ff9236ec078cf2d2850ce9f70f97f29e70 (diff)
Revert "Have the uap version of RemoteExecutorTestBase.RemoteInvoke wait in a… (#21780)" (#22069)
This reverts commit 066ad32f1352fe5325998b997b93a0e0cb54cf58.
Diffstat (limited to 'src/System.Threading.ThreadPool')
-rw-r--r--src/System.Threading.ThreadPool/tests/System.Threading.ThreadPool.Tests.csproj3
-rw-r--r--src/System.Threading.ThreadPool/tests/ThreadPoolTests.cs1
2 files changed, 4 insertions, 0 deletions
diff --git a/src/System.Threading.ThreadPool/tests/System.Threading.ThreadPool.Tests.csproj b/src/System.Threading.ThreadPool/tests/System.Threading.ThreadPool.Tests.csproj
index eb1744dc41..7af5a70b52 100644
--- a/src/System.Threading.ThreadPool/tests/System.Threading.ThreadPool.Tests.csproj
+++ b/src/System.Threading.ThreadPool/tests/System.Threading.ThreadPool.Tests.csproj
@@ -14,6 +14,9 @@
<Compile Include="$(CommonTestPath)\System\PlatformDetection.cs">
<Link>CommonTest\System\PlatformDetection.cs</Link>
</Compile>
+ <Compile Include="$(CommonTestPath)\System\Threading\ThreadTestHelpers.cs">
+ <Link>CommonTest\System\Threading\ThreadTestHelpers.cs</Link>
+ </Compile>
</ItemGroup>
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
</Project>
diff --git a/src/System.Threading.ThreadPool/tests/ThreadPoolTests.cs b/src/System.Threading.ThreadPool/tests/ThreadPoolTests.cs
index dde6fa3129..f6a2fe8f17 100644
--- a/src/System.Threading.ThreadPool/tests/ThreadPoolTests.cs
+++ b/src/System.Threading.ThreadPool/tests/ThreadPoolTests.cs
@@ -3,6 +3,7 @@
// See the LICENSE file in the project root for more information.
using System.Threading.Tasks;
+using System.Threading.Tests;
using Xunit;
namespace System.Threading.ThreadPools.Tests