[perl #44451] [TODO] Write a SKIP block to test OS-specific branch in init::defaults

2008-01-01 Thread James Keenan via RT
ptc's original spec for this ticket was: "Write a SKIP block which will test the one OS-specific branch in init::defaults." What I have done is to isolate the OS-specific code into an internal subroutine, _64_bit_adjustments(), and then set up mock values with which to test that subroutine in new

Re: [perl #44451] [TODO] Write a SKIP block to test OS-specific branch in init::defaults

2007-08-06 Thread Joshua Isom
On Aug 6, 2007, at 5:41 PM, James Keenan via RT wrote: On Mon Aug 06 05:57:39 2007, ptc wrote: This is the block in question in config/init/defaults.pm: my $archname = $Config{archname}; if ($m) { if ( $archname =~ /x86_64/ && $m eq '32' ) { $archname =~ s/x86_64/i

[perl #44451] [TODO] Write a SKIP block to test OS-specific branch in init::defaults

2007-08-06 Thread James Keenan via RT
On Mon Aug 06 15:41:43 2007, jkeen at verizon.net wrote: > > This is the block in question in config/init/defaults.pm: > > my $archname = $Config{archname}; > if ($m) { > if ( $archname =~ /x86_64/ && $m eq '32' ) { > $archname =~ s/x86_64/i386/; > > # a

[perl #44451] [TODO] Write a SKIP block to test OS-specific branch in init::defaults

2007-08-06 Thread James Keenan via RT
On Mon Aug 06 05:57:39 2007, ptc wrote: > In the file t/configure/102-init_defaults.01.t there is the todo item: > > # TODO: Write a SKIP block which will test the one OS-specific branch in > # init::defaults. This is the block in question in config/init/defaults.pm: my $archname = $Config

[perl #44451] [TODO] Write a SKIP block to test OS-specific branch in init::defaults

2007-08-06 Thread via RT
# New Ticket Created by Paul Cochrane # Please include the string: [perl #44451] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=44451 > In the file t/configure/102-init_defaults.01.t there is the todo item: # TODO: Write