mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-10-31 09:20:21 +00:00
38 lines
585 B
C++
38 lines
585 B
C++
#include <gtest/gtest.h>
|
|
|
|
#include <absl/synchronization/mutex.h>
|
|
|
|
#ifdef _WIN32
|
|
#include <winsock2.h>
|
|
int
|
|
startWinsock()
|
|
{
|
|
WSADATA wsockd;
|
|
int err;
|
|
err = ::WSAStartup(MAKEWORD(2, 2), &wsockd);
|
|
if(err)
|
|
{
|
|
perror("Failed to start Windows Sockets");
|
|
return err;
|
|
}
|
|
return 0;
|
|
}
|
|
#endif
|
|
|
|
int
|
|
main(int argc, char** argv)
|
|
{
|
|
#ifdef _WIN32
|
|
if(startWinsock())
|
|
return -1;
|
|
#endif
|
|
|
|
absl::SetMutexDeadlockDetectionMode(absl::OnDeadlockCycle::kAbort);
|
|
::testing::InitGoogleTest(&argc, argv);
|
|
int r = RUN_ALL_TESTS();
|
|
#ifdef _WIN32
|
|
WSACleanup();
|
|
#endif
|
|
return r;
|
|
}
|