Skip to content

Commit

Permalink
Fix typo (#72398)
Browse files Browse the repository at this point in the history
Also, add test that would catch it.
  • Loading branch information
jkotas authored Jul 19, 2022
1 parent 07b9113 commit 28c61bb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ private void StartCore()
if (GetThreadStateBit(ThreadState.Unstarted))
{
Exception? startException = _startException;
startException = null;
_startException = null;

throw new ThreadStartException(startException ?? new OutOfMemoryException());
}
Expand Down
3 changes: 2 additions & 1 deletion src/libraries/System.Threading.Thread/tests/ThreadTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,8 @@ public static void ApartmentStateTest_ChangeBeforeThreadStarted_Windows_Nano_Ser
Assert.Equal(setType == 0 ? 0 : 2, setApartmentState(t, ApartmentState.MTA)); // cannot be changed more than once
Assert.Equal(ApartmentState.STA, getApartmentState(t));

Assert.Throws<ThreadStartException>(() => t.Start()); // Windows Nano Server does not support starting threads in the STA.
Exception ex = Assert.Throws<ThreadStartException>(() => t.Start()); // Windows Nano Server does not support starting threads in the STA.
Assert.IsType<PlatformNotSupportedException>(ex.InnerException);
}


Expand Down

0 comments on commit 28c61bb

Please sign in to comment.