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

Commit

Permalink
Merge pull request #1056 from braddr/win32_2012
Browse files Browse the repository at this point in the history
disable fiber test on win32
  • Loading branch information
yebblies committed Dec 6, 2014
2 parents bdf35f3 + ff3f87f commit d5f6e26
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 d5f6e26

Please sign in to comment.