From 27f98b9ec2d029bfc9cd86e96cbd6a2a061a0a3e Mon Sep 17 00:00:00 2001 From: Nicholas Clark Date: Tue, 14 Feb 2012 23:06:24 +0100 Subject: [PATCH] Pod::Html's feature2.t needs to match path separators portably. On Win32 the path separator in the output it is testing is backslash. This implies that it will be ] on VMS. Tweak the regular expression to match these in addition to / for *nix. --- ext/Pod-Html/t/feature2.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/Pod-Html/t/feature2.t b/ext/Pod-Html/t/feature2.t index 105d420..920f310 100644 --- a/ext/Pod-Html/t/feature2.t +++ b/ext/Pod-Html/t/feature2.t @@ -27,7 +27,7 @@ convert_n_test("feature2", "misc pod-html features 2", like($warn, qr( \Acaching\ directories\ for\ later\ use\n - Converting\ input\ file\ \S+/feature2\.pod\n\z + Converting\ input\ file\ \S+[/\\\]]feature2\.pod\n\z )x, "misc pod-html --verbose warnings"); -- 2.7.4