Re: [MacPerl-Porters] MacPerl 5.8 TODO

2002-06-01 Thread Thomas Wegner
At 16:12 Uhr -0400 31.05.2002, Chris Nandor wrote: At 14:22 +0200 2002.05.31, Thomas Wegner wrote: I've just run Spec.t (I've moved it to perl/t/, before I executed it), and all (1..369) tests are ok. Which tests are failing for you? not ok 285 # Mac-catdir('', '::'): got ':', expected '' not ok

Re: [MacPerl-Porters] MacPerl 5.8 TODO

2002-06-01 Thread Chris Nandor
At 13:00 +0200 2002.06.01, Thomas Wegner wrote: Not sure whether or not you have solved this in the meantime, just in case not ... test 285 should give $root, i.e. File::Spec-rootdir (startup volume) test 320 should give ${root}d1:d2: Looks as if $root is not set properly, but in this case,

Re: [MacPerl-Porters] MacPerl 5.8 TODO

2002-05-31 Thread Jarkko Hietaniemi
I'm sorry but I think the proposed INC et al changes look much too scary to go into 5.8.0. Maybe they can go into MacPerl 5.8.0 (which will happen somewhere between mainline 5.8.0 and mainline 5.8.1, I guess.) -- $jhi++; # http://www.iki.fi/jhi/ # There is this special biologist word

Re: [MacPerl-Porters] MacPerl 5.8 TODO

2002-05-31 Thread Chris Nandor
At 17:46 +0300 2002.05.31, Jarkko Hietaniemi wrote: I'm sorry but I think the proposed @INC et al changes look much too scary to go into 5.8.0. Maybe they can go into MacPerl 5.8.0 (which will happen somewhere between mainline 5.8.0 and mainline 5.8.1, I guess.) Would you mind putting in

Re: [MacPerl-Porters] MacPerl 5.8 TODO

2002-05-31 Thread Jarkko Hietaniemi
On Fri, May 31, 2002 at 10:54:44AM -0400, Chris Nandor wrote: At 17:46 +0300 2002.05.31, Jarkko Hietaniemi wrote: I'm sorry but I think the proposed @INC et al changes look much too scary to go into 5.8.0. Maybe they can go into MacPerl 5.8.0 (which will happen somewhere between mainline

Re: [MacPerl-Porters] MacPerl 5.8 TODO

2002-05-31 Thread Chris Nandor
At 13:46 +0200 2002.05.31, Thomas Wegner wrote: Just one thing: Most of the tests, including the ExtUtils:: tests, still assume to be in the perl/t/ directory, at least that's what it looks like. This makes fixing @INC issues a real pain in the rear (ahem...), to be honest. And some tests just

Re: [MacPerl-Porters] MacPerl 5.8 TODO

2002-05-31 Thread Jarkko Hietaniemi
From then on, treat it as a Mac path. Jarkko, do you think this is reasonable, not just for 5.8.0 (the catdir Aaargh, don't ask me about anything beyond 5.8.0 right now :-) All I can say is the obey the First Rule: do no harm. stuff could all be put in if ($^O eq 'MacOS') for now), but in

Re: [MacPerl-Porters] MacPerl 5.8 TODO

2002-05-31 Thread Chris Nandor
At 18:11 +0300 2002.05.31, Jarkko Hietaniemi wrote: From then on, treat it as a Mac path. Jarkko, do you think this is reasonable, not just for 5.8.0 (the catdir Aaargh, don't ask me about anything beyond 5.8.0 right now :-) All I can say is the obey the First Rule: do no harm. Yes, I just

Re: [MacPerl-Porters] MacPerl 5.8 TODO

2002-05-31 Thread Chris Nandor
At 14:22 +0200 2002.05.31, Thomas Wegner wrote: I've just run Spec.t (I've moved it to perl/t/, before I executed it), and all (1..369) tests are ok. Which tests are failing for you? not ok 285 # Mac-catdir('', '::'): got ':', expected '' not ok 320 # Mac-catdir('','::','d1','d2'): got

Re: [MacPerl-Porters] MacPerl 5.8 TODO

2002-05-30 Thread Thomas Wegner
At 13:25 Uhr -0400 29.05.2002, Chris Nandor wrote: At 20:20 +0300 2002.05.29, Jarkko Hietaniemi wrote: Since we don't have $ENV{PERL_CORE} in MacPerl, I'm not sure what to do. CGI/t/carp.t runs with the MacPerl tool, but when run with the app, test You should think of something :-) since

Re: [MacPerl-Porters] MacPerl 5.8 TODO

2002-05-30 Thread Chris Nandor
At 10:51 +0200 2002.05.30, Thomas Wegner wrote: Shouldn't that be added (by default) to the list of environment variables in the MacPerl app and to the MPW startup script for the MacPerl tool? No, PERL_CORE should only be true if you are building Perl, if I understand correctly. -- Chris

Re: [MacPerl-Porters] MacPerl 5.8 TODO

2002-05-30 Thread Jarkko Hietaniemi
On Thu, May 30, 2002 at 04:37:10PM +0300, Jarkko Hietaniemi wrote: On Thu, May 30, 2002 at 08:27:27AM -0400, Chris Nandor wrote: At 10:51 +0200 2002.05.30, Thomas Wegner wrote: Shouldn't that be added (by default) to the list of environment variables in the MacPerl app and to the MPW

Re: [MacPerl-Porters] MacPerl 5.8 TODO

2002-05-30 Thread Chris Nandor
At 18:51 +0200 2002.05.30, Thomas Wegner wrote: * Tested through E* so far, except CPAN/t Does that include the ExtUtils:: tests? Several are failing for me. -- Chris Nandor [EMAIL PROTECTED]http://pudge.net/ Open Source Development Network[EMAIL PROTECTED]

Re: [MacPerl-Porters] MacPerl 5.8 TODO

2002-05-30 Thread Chris Nandor
At 18:51 +0200 2002.05.30, Thomas Wegner wrote: * CGI/carp.t [open] -- not ok 28 with MP app, ok with tool This one just gets a line number wrong, because the beginning of the file is: # -*- Mode: cperl; coding: utf-8; cperl-indent-level: 2 -*- #!/usr/local/bin/perl -w And then gives

Re: [MacPerl-Porters] MacPerl 5.8 TODO

2002-05-29 Thread Jarkko Hietaniemi
Since we don't have $ENV{PERL_CORE} in MacPerl, I'm not sure what to do. CGI/t/carp.t runs with the MacPerl tool, but when run with the app, test You should think of something :-) since many 5.8 tests assume $ENV{PERL_CORE}, they simply won't work right without. *** Digest::MD5 The version

Re: [MacPerl-Porters] MacPerl 5.8 TODO

2002-05-29 Thread Chris Nandor
At 20:20 +0300 2002.05.29, Jarkko Hietaniemi wrote: Since we don't have $ENV{PERL_CORE} in MacPerl, I'm not sure what to do. CGI/t/carp.t runs with the MacPerl tool, but when run with the app, test You should think of something :-) since many 5.8 tests assume $ENV{PERL_CORE}, they simply won't