From 59f4d939f1cc8da4fafc804dea232879ce8b58ac Mon Sep 17 00:00:00 2001 From: Steve Hay Date: Thu, 29 Aug 2013 13:42:15 +0100 Subject: [PATCH] Stop t/io/utf8.t leaving a temporary file behind on Windows Filehandles need to be closed for unlink to work on Windows. --- t/io/utf8.t | 1 + 1 file changed, 1 insertion(+) diff --git a/t/io/utf8.t b/t/io/utf8.t index 29beba2..1a0396b 100644 --- a/t/io/utf8.t +++ b/t/io/utf8.t @@ -385,4 +385,5 @@ is($failed, undef); like( $@, qr/utf8 "\\xEF" does not map to Unicode .+ chunk 1/, "<:utf8 readline (fixed) must warn about bad utf8"); + close F; } -- 2.7.4