From: Andy Grundman Date: Wed, 28 Mar 2007 22:24:42 +0000 (+0000) Subject: Skip [, (, and ) args tests on remote servers. These fail on both Apache and lighttp... X-Git-Tag: 5.7099_04~208 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=e7ca2e0e77986096bc55653b92c5f40d44470337 Skip [, (, and ) args tests on remote servers. These fail on both Apache and lighttpd for whatever reason --- diff --git a/t/live_component_controller_args.t b/t/live_component_controller_args.t index f5768ae..c4fdc17 100644 --- a/t/live_component_controller_args.t +++ b/t/live_component_controller_args.t @@ -65,8 +65,9 @@ sub run_test_for { SKIP: { - # Skip %2F and . tests on real webservers, they are often ignored by default - if ( $ENV{CATALYST_SERVER} && $path =~ /(?:%2F|\.)/ ) { + # Skip %2F, ., [, (, and ) tests on real webservers + # Both Apache and lighttpd don't seem to like these + if ( $ENV{CATALYST_SERVER} && $path =~ /(?:%2F|\.|%5B|\(|\))/ ) { skip "Skipping $path tests on remote server", 6; }