Showing with 6 additions and 4 deletions.
  1. +6 −4 src/core/thread.d
10 changes: 6 additions & 4 deletions src/core/thread.d
Original file line number Diff line number Diff line change
Expand Up @@ -4895,8 +4895,9 @@ unittest


// Test exception handling inside fibers.
unittest
{
version (Win32) {
// broken on win32 under windows server 2012: bug 13821
} else unittest {
enum MSG = "Test message.";
string caughtMsg;
(new Fiber({
Expand Down Expand Up @@ -4940,8 +4941,9 @@ deprecated unittest
new Fiber({}).call(false);
}

unittest
{
version (Win32) {
// broken on win32 under windows server 2012: bug 13821
} else unittest {
enum MSG = "Test message.";

try
Expand Down