summaryrefslogtreecommitdiffstats
path: root/tests/Network/Google.cpp
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2015-01-26 14:46:20 +0100
committerMattes D <github@xoft.cz>2015-01-27 14:53:37 +0100
commit053362e604c98c229df57337ba7752d4d6b97fa8 (patch)
tree774001009deb09c66a7d3e6639a533c6f4ece721 /tests/Network/Google.cpp
parentcTCPLinkImpl: Added the BEV_OPT_THREADSAFE flag. (diff)
downloadcuberite-053362e604c98c229df57337ba7752d4d6b97fa8.tar
cuberite-053362e604c98c229df57337ba7752d4d6b97fa8.tar.gz
cuberite-053362e604c98c229df57337ba7752d4d6b97fa8.tar.bz2
cuberite-053362e604c98c229df57337ba7752d4d6b97fa8.tar.lz
cuberite-053362e604c98c229df57337ba7752d4d6b97fa8.tar.xz
cuberite-053362e604c98c229df57337ba7752d4d6b97fa8.tar.zst
cuberite-053362e604c98c229df57337ba7752d4d6b97fa8.zip
Diffstat (limited to 'tests/Network/Google.cpp')
-rw-r--r--tests/Network/Google.cpp15
1 files changed, 14 insertions, 1 deletions
diff --git a/tests/Network/Google.cpp b/tests/Network/Google.cpp
index 2b8830c24..54bfa6de4 100644
--- a/tests/Network/Google.cpp
+++ b/tests/Network/Google.cpp
@@ -7,6 +7,7 @@
#include <thread>
#include "OSSupport/Event.h"
#include "OSSupport/Network.h"
+#include "OSSupport/NetworkSingleton.h"
@@ -96,7 +97,7 @@ public:
-int main()
+void DoTest(void)
{
cEvent evtFinish;
@@ -109,7 +110,19 @@ int main()
LOGD("Connect request has been queued.");
evtFinish.Wait();
+}
+
+
+
+
+
+int main()
+{
+ DoTest();
+
+ cNetworkSingleton::Get().Terminate();
LOGD("Network test finished");
+
return 0;
}