diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2006-07-13 22:47:29 +0300 |
---|---|---|
committer | H.Merijn Brand <h.m.brand@xs4all.nl> | 2006-07-13 17:12:00 +0000 |
commit | 2f3efc978ada94e3718bd6f3a25b06cd1d13b6f8 (patch) | |
tree | 4fbd3f59e65577085646ea3f266175edf15efd1e /lib/AutoLoader.t | |
parent | 6ae709ad20fb5debe5f58c9686ed99226819442f (diff) | |
download | perl-2f3efc978ada94e3718bd6f3a25b06cd1d13b6f8.tar.gz |
z/OS: non-CPAN ext and lib + main() without the third arg + Stephen McCamant's comment
Message-ID: <44B67921.6090901@iki.fi>
p4raw-id: //depot/perl@28567
Diffstat (limited to 'lib/AutoLoader.t')
-rwxr-xr-x | lib/AutoLoader.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/AutoLoader.t b/lib/AutoLoader.t index 9f0804b004..da7071b32b 100755 --- a/lib/AutoLoader.t +++ b/lib/AutoLoader.t @@ -121,7 +121,7 @@ is( $foo->bazmarkhianish($1), 'foo', '(again)' ); eval { $foo->blechanawilla; }; -like( $@, qr/syntax error/, 'require error propagates' ); +like( $@, qr/syntax error/i, 'require error propagates' ); # test recursive autoloads open(F, '>', File::Spec->catfile( $fulldir, 'a.al')) |