From 9465eae359e80b2fe6021e4e31141799db114c90 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?So=CC=88nke=20Ludwig?= Date: Wed, 25 Jan 2017 12:58:16 +0100 Subject: [PATCH] Let the USDS test clean up after itself. --- tests/0-usds.d | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/0-usds.d b/tests/0-usds.d index 373fd1c..b03e434 100644 --- a/tests/0-usds.d +++ b/tests/0-usds.d @@ -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(); }