From a64eef7a7da9795819359ede88eda5a16e23291b Mon Sep 17 00:00:00 2001 From: Steffen Mueller Date: Mon, 16 May 2011 20:24:33 +0200 Subject: [PATCH] Attempt band-aid fix for win32 build failure --- dist/ExtUtils-ParseXS/t/106-process_typemaps.t | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/ExtUtils-ParseXS/t/106-process_typemaps.t b/dist/ExtUtils-ParseXS/t/106-process_typemaps.t index 55a7acb..0f28510 100644 --- a/dist/ExtUtils-ParseXS/t/106-process_typemaps.t +++ b/dist/ExtUtils-ParseXS/t/106-process_typemaps.t @@ -21,7 +21,7 @@ my $startdir = cwd(); ($type_kind_ref, $proto_letter_ref, $input_expr_ref, $output_expr_ref) = process_typemaps( $typemap, $tdir ); }; - like( $@, qr/Can't find $typemap in $tdir/, #' + like( $@, qr/Can't find \Q$typemap\E in \Q$tdir\E/, #' "Got expected result for no typemap in current directory" ); chdir $startdir; } @@ -38,7 +38,7 @@ my $startdir = cwd(); ($type_kind_ref, $proto_letter_ref, $input_expr_ref, $output_expr_ref) = process_typemaps( $typemap, $tdir ); }; - like( $@, qr/Can't find pseudo in $tdir/, #' + like( $@, qr/Can't find pseudo in \Q$tdir\E/, #' "Got expected result for no typemap in current directory" ); chdir $startdir; } -- 1.8.3.1