1
1
Fork 0
mirror of https://github.com/oxen-io/lokinet synced 2023-12-14 06:53:00 +01:00

ignore test on win32

This commit is contained in:
Jeff Becker 2019-08-23 16:49:12 -04:00
parent 35c78348f2
commit 647f874d0f
No known key found for this signature in database
GPG key ID: F357B3B42F6F9B05

View file

@ -171,6 +171,9 @@ struct LinkLayerTest : public test::LlarpTest< llarp::sodium::CryptoLibSodium >
TEST_F(LinkLayerTest, TestIWP)
{
#ifdef WIN32
GTEST_SKIP();
#else
Alice.link = iwp::NewInboundLink(
Alice.encryptionKey,
[&]() -> const RouterContact& { return Alice.GetRC(); },
@ -256,6 +259,7 @@ TEST_F(LinkLayerTest, TestIWP)
RunMainloop();
ASSERT_TRUE(Bob.gotLIM);
#endif
};
TEST_F(LinkLayerTest, TestUTPAliceRenegWithBob)