# HG changeset patch # User Sergey Kandaurov # Date 1625038772 -10800 # Node ID 672018971a623addb49e7354feb97e10c01910d4 # Parent 3052d6ea8ff3a0674f3b64db5ee80023347fced8 Tests: skip Location header escaping test on win32. On win32, the backslash character ("\") is a path separator. diff --git a/http_absolute_redirect.t b/http_absolute_redirect.t --- a/http_absolute_redirect.t +++ b/http_absolute_redirect.t @@ -167,6 +167,9 @@ like(get('off', '/return301'), qr!Locati # %00-%1F, %7F-%FF, " ", """, "<", ">", "\", "^", "`", "{", "|", "}" # additionally, all characters in ESCAPE_URI: "?", "%", "#" +SKIP: { +skip 'win32', 1 if $^O eq 'MSWin32'; + TODO: { local $TODO = 'not yet' unless $t->has_version('1.21.1'); @@ -176,6 +179,8 @@ like(get('off', '/auto%20%22%23%25%3C%3E } +} + ############################################################################### sub get {