Re: [perl #47127] [PATCH] t/configure/111-auto_gcc-01.t test failure

2007-11-04 Thread James E Keenan
On Nov 4, 2007, at 3:13 AM, Cosimo Streppone via RT wrote: However, just out of curiosity... Would the attached test work as well? I replaced all the code that does the hand-testing of auto::gcc with the automated `test_step_thru_runstep()' function. IIUC, that function does exactly what the

[perl #43308] [TODO] config/auto/snprintf.pm: Write unit tests

2007-11-04 Thread James Keenan via RT
Patches committed to trunk Nov 04 2007 in r22699. Resolving ticket.

[perl #43335] [TODO] config/auto/revision.pm: Write unit tests

2007-11-04 Thread James Keenan via RT
1. Configuration step gen::revision was misnamed. It didn't generate any files; it simply probed the system automatically. So I renamed the class, which meant repositioning it within the order of configuration steps in Parrot::Configure::Step::List and changing the names of two test files.

[PDD19] Syntax for slicing: , and ;

2007-11-04 Thread Klaas-Jan Stol
According to PDD19, the slicing syntax (..) is deprecated. This means that the following will be removed: $P0 = foo[1 .. 3] This will be replaced by the (now still experimental) slice op (according to pdd19). In IMCC, it's also possible to write: $P0 = foo[1, 3] According to IMCC.y, this is a

[perl #47153] [PATCH][Review] Proposed change from PMC_IS_NULL to PMC_is_null

2007-11-04 Thread via RT
# New Ticket Created by Ronald Blaschke # Please include the string: [perl #47153] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket/Display.html?id=47153 Parrot currently uses indirect DLL linkage, which means that exported data,

[svn:parrot-pdd] r22709 - trunk/docs/pdds/draft

2007-11-04 Thread kjs
Author: kjs Date: Sun Nov 4 11:54:16 2007 New Revision: 22709 Modified: trunk/docs/pdds/draft/pdd06_pasm.pod Log: [pdd06] add :anon flag to pasm grammar (this is allowed in pasm too). Modified: trunk/docs/pdds/draft/pdd06_pasm.pod

[perl #46727] [TODO] config/auto/ctags.pm: Write unit tests

2007-11-04 Thread James Keenan via RT
The patch attached refactors configuration step auto::ctags to maximize testability. It also provides 3 test files to replace ptc's original test file. ptc's original functionality is, however, maintained intact. Assuming no objection, I'll apply this in 2-3 days. Thank you very much. kid51

[perl #43295] [TODO] config/auto/socklen_t.pm: Write unit tests

2007-11-04 Thread James Keenan via RT
Patch attached refactors configuration step auto::socklen_t to maximize testability. Patch also includes two test files which replace placeholder file. Will commit to trunk in 2-3 days if there is no objection. Index: MANIFEST ===

Re: [perl #46727] [TODO] config/auto/ctags.pm: Write unit tests

2007-11-04 Thread Paul Cochrane
kid51, On 05/11/2007, James Keenan via RT [EMAIL PROTECTED] wrote: The patch attached refactors configuration step auto::ctags to maximize testability. It also provides 3 test files to replace ptc's original test file. ptc's original functionality is, however, maintained intact. Assuming