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

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tests/src/Simple/BasicThreading/BasicThreading.cs')
-rw-r--r--tests/src/Simple/BasicThreading/BasicThreading.cs7
1 files changed, 3 insertions, 4 deletions
diff --git a/tests/src/Simple/BasicThreading/BasicThreading.cs b/tests/src/Simple/BasicThreading/BasicThreading.cs
index 23360a892..7f77687a4 100644
--- a/tests/src/Simple/BasicThreading/BasicThreading.cs
+++ b/tests/src/Simple/BasicThreading/BasicThreading.cs
@@ -17,10 +17,6 @@ class Program
{
SimpleReadWriteThreadStaticTest.Run(42, "SimpleReadWriteThreadStatic");
- // TODO: After issue https://github.com/dotnet/corert/issues/2695 is fixed, move FinalizeTest to run at the end
- if (FinalizeTest.Run() != Pass)
- return Fail;
-
ThreadStaticsTestWithTasks.Run();
if (ThreadTest.Run() != Pass)
@@ -28,6 +24,9 @@ class Program
if (TimerTest.Run() != Pass)
return Fail;
+
+ if (FinalizeTest.Run() != Pass)
+ return Fail;
return Pass;
}