This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Update Pod::Simple from version 3.38 to 3.39
[perl5.git] / t / re / fold_grind_u.t
1 #!./perl
2
3 use strict;
4 use warnings;
5 no warnings 'once';
6
7 BEGIN {
8     chdir 't' if -d 't';
9     require './test.pl';
10     require './loc_tools.pl';
11     set_up_inc('../lib');
12 }
13
14 $::TEST_CHUNK = 'u';
15
16 do './re/fold_grind.pl';
17 print STDERR "$@\n" if $@;
18 print STDERR "$!\n" if $!;
19
20 1;
21
22 #
23 # ex: set ts=8 sts=4 sw=4 et:
24 #