Let the USDS test clean up after itself.

This commit is contained in:
Sönke Ludwig 2017-01-25 12:58:16 +01:00
parent 87394165de
commit 9465eae359

View file

@ -144,6 +144,11 @@ void testStream()
void main()
{
scope (exit) {
if (exists(addr1)) remove(addr1);
if (exists(addr2)) remove(addr2);
if (exists(addr3)) remove(addr3);
}
testStream();
testDgram();
}