Skip to content
This repository has been archived by the owner on Oct 12, 2022. It is now read-only.

Commit

Permalink
disable fiber test on win32
Browse files Browse the repository at this point in the history
  • Loading branch information
braddr committed Dec 5, 2014
1 parent 72e07b0 commit ff3f87f
Showing 1 changed file with 6 additions and 4 deletions.
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

0 comments on commit ff3f87f

Please sign in to comment.