diff options
author | Steffen Mueller <smueller@cpan.org> | 2011-05-16 20:24:33 +0200 |
---|---|---|
committer | Steffen Mueller <smueller@cpan.org> | 2011-07-12 20:54:51 +0200 |
commit | a64eef7a7da9795819359ede88eda5a16e23291b (patch) | |
tree | f6df08b3b8d98e430e120324ca942f91c762001f /dist/ExtUtils-ParseXS | |
parent | 48150f65fc4a017fa6e14355313b169601ce3baf (diff) | |
download | perl-a64eef7a7da9795819359ede88eda5a16e23291b.tar.gz |
Attempt band-aid fix for win32 build failure
Diffstat (limited to 'dist/ExtUtils-ParseXS')
-rw-r--r-- | dist/ExtUtils-ParseXS/t/106-process_typemaps.t | 4 |
1 files 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 55a7acbd8e..0f28510e12 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; } |