Skip to content

Commit e656972

Browse files
committed
Merge pull request Perl#17 in CB/perl5 from cbrunperl to ios_blead_test
* commit '65fa5ed3c8be29d387a6a5fa874e2f1268c66eeb': fixes cbrunperl.pm->ios.pm
2 parents 29eb366 + 65fa5ed commit e656972

File tree

27 files changed

+41
-39
lines changed

27 files changed

+41
-39
lines changed

MANIFEST

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4837,7 +4837,7 @@ lib/blib.t blib.pm test
48374837
lib/bytes.pm Pragma to enable byte operations
48384838
lib/bytes.t bytes.pm test
48394839
lib/bytes_heavy.pl Support routines for byte pragma
4840-
lib/cbrunperl.pm iOS library
4840+
lib/ios.pm iOS library
48414841
lib/charnames.pm Character names
48424842
lib/charnames.t See if character names work
48434843
lib/Class/Struct.pm Declare struct-like datatypes as Perl classes

Porting/Maintainers.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1438,7 +1438,7 @@ package Maintainers;
14381438
lib/blib.{pm,t}
14391439
lib/bytes.{pm,t}
14401440
lib/bytes_heavy.pl
1441-
lib/cbrunperl.pm
1441+
lib/ios.pm
14421442
lib/charnames.{pm,t}
14431443
lib/dbm_filter_util.pl
14441444
lib/deprecate.pm

README.ios

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ where you can also run Instruments.
330330

331331
`runperl` functionality is currently provided through CamelBones. The
332332
runperl config hash used in t/harness is converted to JSON and passed as
333-
a simple scalar to the CBRunPerl XS method of CamelBones, which decodes
333+
a simple scalar to the ios XS method of CamelBones, which decodes
334334
the string into JSON, and executes and captures the output of the test.
335335
All perl interpreters are spawned as new threads, i.e. runperl. Perl
336336
never runs in the main thread.

cpan/Archive-Tar/t/08_ptargrep.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use File::Spec;
66
use FindBin '$Bin';
77
use Archive::Tar;
88
if ($^O =~ /darwin-ios/) {
9-
use cbrunperl;
9+
use ios;
1010
}
1111

1212
# filenames

cpan/AutoLoader/t/02AutoSplit.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ use File::Find;
2929
my $Is_ios = $^O =~ /darwin-ios/;
3030
if ($Is_ios) {
3131
use Cwd qw(getcwd);
32-
use cbrunperl;
32+
use ios;
3333
}
3434

3535
my $Is_VMS = $^O eq 'VMS';

cpan/Filter-Util-Call/t/call.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ use Config;
33
BEGIN {
44
if ($^O =~ /darwin-ios/) {
55
use lib '../lib';
6-
require 'cbrunperl.pm';
6+
require 'ios.pm';
77
}
88
if ($ENV{PERL_CORE}) {
99
if ($Config{'extensions'} !~ m{\bFilter/Util/Call\b}) {

cpan/Filter-Util-Call/t/rt_54452-rebless.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ use strict;
1717
use warnings;
1818

1919
if ($^O =~ /darwin-ios/) {
20-
use cbrunperl;
20+
use ios;
2121
}
2222

2323
use FindBin;

cpan/Pod-Usage/t/pod/headwithmarkup.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ use Test::More tests => 1;
22

33
BEGIN {
44
if ($^O =~ /darwin-ios/) {
5-
require 'cbrunperl.pm';
5+
require 'ios.pm';
66
}
77
}
88

cpan/Pod-Usage/t/pod/selectheaders.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ use Test::More tests => 2;
22

33
BEGIN {
44
if ($^O =~ /darwin-ios/) {
5-
require 'cbrunperl.pm';
5+
require 'ios.pm';
66
}
77
}
88

cpan/Pod-Usage/t/pod/selectsections.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ use Test::More tests => 2;
22

33
BEGIN {
44
if ($^O =~ /darwin-ios/) {
5-
require 'cbrunperl.pm';
5+
require 'ios.pm';
66
}
77
}
88

0 commit comments

Comments
 (0)