Commit 332960da authored by Kenton Varda's avatar Kenton Varda

OK fine, Cygwin doesn't support SCM_RIGHTS.

parent 728a9b58
...@@ -426,7 +426,7 @@ TEST(TwoPartyNetwork, BootstrapFactory) { ...@@ -426,7 +426,7 @@ TEST(TwoPartyNetwork, BootstrapFactory) {
// ======================================================================================= // =======================================================================================
#if !_WIN32 #if !_WIN32 && !__CYGWIN__ // Windows and Cygwin don't support SCM_RIGHTS.
KJ_TEST("send FD over RPC") { KJ_TEST("send FD over RPC") {
auto io = kj::setupAsyncIo(); auto io = kj::setupAsyncIo();
...@@ -520,7 +520,7 @@ KJ_TEST("FD per message limit") { ...@@ -520,7 +520,7 @@ KJ_TEST("FD per message limit") {
KJ_EXPECT(io.lowLevelProvider->wrapInputFd(kj::mv(in2))->readAllText().wait(io.waitScope) KJ_EXPECT(io.lowLevelProvider->wrapInputFd(kj::mv(in2))->readAllText().wait(io.waitScope)
== "foo"); == "foo");
} }
#endif // !_WIN32 #endif // !_WIN32 && !__CYGWIN__
} // namespace } // namespace
} // namespace _ } // namespace _
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment