File tree Expand file tree Collapse file tree 8 files changed +16
-16
lines changed Expand file tree Collapse file tree 8 files changed +16
-16
lines changed Original file line number Diff line number Diff line change @@ -5684,6 +5684,10 @@ t/io/tell.t See if file seeking works
5684
5684
t/io/through.t See if pipe passes data intact
5685
5685
t/io/utf8.t See if file seeking works
5686
5686
t/japh/abigail.t Obscure tests
5687
+ t/lib/caller/Apack.pm test Module for caller.t
5688
+ t/lib/caller/Bpack.pm test Module for caller.t
5689
+ t/lib/caller/Cpack.pm test Module for caller.t
5690
+ t/lib/caller/Foo.pm test Module for caller.t
5687
5691
t/lib/CannotParse.pm For test case in op/require_errors.t
5688
5692
t/lib/charnames/alias Tests of "use charnames" with aliases.
5689
5693
t/lib/Cname.pm Test charnames in regexes (op/pat.t)
@@ -5722,10 +5726,6 @@ t/lib/feature/nonesuch Tests for enabling/disabling nonexistent feature
5722
5726
t/lib/feature/removed Tests for enabling/disabling removed feature
5723
5727
t/lib/feature/say Tests for enabling/disabling say feature
5724
5728
t/lib/feature/switch Tests for enabling/disabling switch feature
5725
- t/lib/GH_15109/Apack.pm test Module for caller.t
5726
- t/lib/GH_15109/Bpack.pm test Module for caller.t
5727
- t/lib/GH_15109/Cpack.pm test Module for caller.t
5728
- t/lib/GH_15109/Foo.pm test Module for caller.t
5729
5729
t/lib/h2ph.h Test header file for h2ph
5730
5730
t/lib/h2ph.pht Generated output from h2ph.h by h2ph, for comparison
5731
5731
t/lib/locale/latin1 Part of locale.t in Latin 1
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ # for use by caller.t for GH #15109 and other tests
2
+ package Apack ;
3
+ use Bpack;
4
+ 1;
Original file line number Diff line number Diff line change
1
+ # for use by caller.t for GH #15109 and other tests
2
+ package Bpack ;
3
+ use Cpack;
4
+ 1;
Original file line number Diff line number Diff line change 1
- # for use by caller.t for GH #15109
1
+ # for use by caller.t for GH #15109 and other tests
2
2
package Cpack ;
3
3
4
4
File renamed without changes.
Original file line number Diff line number Diff line change @@ -339,14 +339,14 @@ do './op/caller.pl' or die $@;
339
339
# See that callers within a nested series of 'use's gets the right
340
340
# filenames.
341
341
{
342
- local @INC = ' lib/GH_15109 /' ;
342
+ local @INC = ' lib/caller /' ;
343
343
# Apack use's Bpack which use's Cpack which populates @Cpack::caller
344
344
# with the file:N of all the callers
345
345
eval ' use Apack; 1' ;
346
346
is($@ , " " , " GH #15109 - eval" );
347
347
is (scalar (@Cpack::callers ), 10, " GH #15109 - callers count" );
348
- like($Cpack::callers [$_ ], qr {GH_15109 /Bpack.pm:3} , " GH #15109 level $_ " ) for 0..2;
349
- like($Cpack::callers [$_ ], qr {GH_15109 /Apack.pm:3} , " GH #15109 level $_ " ) for 3..5;
348
+ like($Cpack::callers [$_ ], qr {caller /Bpack.pm:3} , " GH #15109 level $_ " ) for 0..2;
349
+ like($Cpack::callers [$_ ], qr {caller /Apack.pm:3} , " GH #15109 level $_ " ) for 3..5;
350
350
like($Cpack::callers [$_ ], qr {\( eval \d +\) :1} , " GH #15109 level $_ " ) for 6..8;
351
351
like($Cpack::callers [$_ ], qr { caller\. t} , " GH #15109 level $_ " ) for 9;
352
352
You can’t perform that action at this time.
0 commit comments