Use normal main() and avoid socket leak in test.
This commit is contained in:
parent
500385a303
commit
968ac82c8d
|
@ -2,7 +2,6 @@
|
||||||
name "tests"
|
name "tests"
|
||||||
description "TCP disconnect task issue"
|
description "TCP disconnect task issue"
|
||||||
dependency "vibe-core" path="../"
|
dependency "vibe-core" path="../"
|
||||||
versions "VibeDefaultMain"
|
|
||||||
+/
|
+/
|
||||||
module test;
|
module test;
|
||||||
|
|
||||||
|
@ -10,7 +9,7 @@ import vibe.core.core;
|
||||||
import vibe.core.net;
|
import vibe.core.net;
|
||||||
import core.time : msecs;
|
import core.time : msecs;
|
||||||
|
|
||||||
shared static this()
|
void main()
|
||||||
{
|
{
|
||||||
auto l = listenTCP(0, (conn) {
|
auto l = listenTCP(0, (conn) {
|
||||||
auto td = runTask!TCPConnection((conn) {
|
auto td = runTask!TCPConnection((conn) {
|
||||||
|
@ -39,4 +38,8 @@ shared static this()
|
||||||
sleep(50.msecs);
|
sleep(50.msecs);
|
||||||
exitEventLoop();
|
exitEventLoop();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
runApplication();
|
||||||
|
|
||||||
|
l.stopListening();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue