Attempt band-aid fix for win32 build failure
authorSteffen Mueller <smueller@cpan.org>
Mon, 16 May 2011 18:24:33 +0000 (20:24 +0200)
committerSteffen Mueller <smueller@cpan.org>
Tue, 12 Jul 2011 18:54:51 +0000 (20:54 +0200)
dist/ExtUtils-ParseXS/t/106-process_typemaps.t

index 55a7acb..0f28510 100644 (file)
@@ -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;
 }