Re: Perl 6 Summary... p6rules

2005-06-01 Thread Dino Morelli
On Wed, 1 Jun 2005, Patrick R. Michaud wrote: >On Tue, May 31, 2005 at 11:58:12PM -0400, Dino Morelli wrote: >> >> This and my other two patches to p6rules tests (RT #35950, 35971, 35994) >> have not yet been applied. > >Applied, "thanks" x 3. > Than

Re: Perl 6 Summary... p6rules

2005-06-01 Thread Dino Morelli
On Tue, 31 May 2005, Patrick R. Michaud wrote: >On Tue, May 31, 2005 at 11:58:12PM -0400, Dino Morelli wrote: >> >> This and my other two patches to p6rules tests (RT #35950, 35971, 35994) >> have not yet been applied. > >My apologies for taking so long to apply these

Re: Bad code generated by imcc optimiser

2005-06-01 Thread Dino Morelli
, 0 # set S1, "" # set_p_pc P0, func # invokecc # end # func: # inc I30 # ' # doesn't match '/func: # inc I\d+ # null I0 # null I3 # returncc # / # ' imcc/t/imcpasm/opt1ok 72/72# Looks like you failed 1 test of 72. imcc/t/imcpasm/opt1dubious Test returned

Re: Perl 6 Summary... p6rules

2005-05-31 Thread Dino Morelli
Thank you for the summary, Matt I have a correction, though: > subrules tests > Dino Morelli provided a patch adding tests for subrules to PGE. Warnock >applies. > ><http://xrl.us/f955> This and my other two patches to p6rules tests (RT #35950, 35971, 359

Possible ws modifier and capture bug

2005-05-23 Thread Dino Morelli
print "\n" .end The first match is getting 'dog' in both 0 and 1 and never capturing 'spot' I think it should be like the second one (which doesn't use :w but should be the same expression). Output: : 0 [0]: 0 [1]: 0 dog spot : 0 [0]: 0 [1]: 0 dog spot -D

Re: pcre.t failure

2005-05-20 Thread Dino Morelli
On Fri, 20 May 2005, chromatic wrote: >On Fri, 2005-05-20 at 17:49 -0400, Dino Morelli wrote: > >> r8136, I'm seeing this test failure: >> >> $ perl t/harness t/library/pcre.t >> >> t/library/pcreCan't use string ("Test::Builder")

pcre.t failure

2005-05-20 Thread Dino Morelli
0 12 200.00% 1 Failed 1/1 test scripts, 0.00% okay. 1/1 subtests failed, 0.00% okay. My system is Linux with Perl 5.8.4 >From chat on #parrot, looks like not everybody is seeing this happen. -Dino -- .~.Dino Morelli /V\email: [EMAIL PROTECTED] /( )\ weblog

Re: [PATCH] More t/p6rules tests

2005-05-18 Thread Dino Morelli
On Wed, 18 May 2005, Dino Morelli wrote: >On Wed, 18 May 2005, Dino Morelli wrote: > >>Patch file for MANIFEST and cclass.t, and new file escape.t attached. >> > >Looks like I missed the escape.t attachment. > The list server keeps eating my attached homework. Wo

Re: [PATCH] More t/p6rules tests

2005-05-18 Thread Dino Morelli
On Wed, 18 May 2005, Dino Morelli wrote: >Patch file for MANIFEST and cclass.t, and new file escape.t attached. > Looks like I missed the escape.t attachment. -Dino -- .~. Dino Morelli /V\email: [EMAIL PROTECTED] /( )\ weblog: http://categorically.net/d/blog/ ^^-^^ pre

[PATCH] More t/p6rules tests

2005-05-18 Thread Dino Morelli
I moved the \N test out of t/p6rules/cclass.t and made a new file for escape tests: escape.t, currently containing tests for \s \S \w \W \d \D \n \N Patch file for MANIFEST and cclass.t, and new file escape.t attached. -Dino -- .~.Dino Morelli /V\email: [EMAIL PROTECTED

t/src/manifest.t failed

2005-05-17 Thread Dino Morelli
gnore for the entire project for something like ^\..*\.sw.$ (Vim swap file) But the other things, I'm new and not sure yet what they are. I think the inc.vim may have been created by the Makefile in editor/ when I had it create syntax highlighting. -Dino -- .~.Dino Morelli /V\ema

[PATCH] more ws.t tests, fixed

2005-05-16 Thread Dino Morelli
I left something uncommented in my prior patch, causing failure. Fixed. This is additional tests for :w using (), [], \b and :: for separation. -Dino -- .~.Dino Morelli /V\email: [EMAIL PROTECTED] /( )\ weblog: http://categorically.net/d/blog/ ^^-^^ preferred distro: Debian GNU

[PATCH] more ws.t tests

2005-05-15 Thread Dino Morelli
ctually be working. :) -Dino -- .~.Dino Morelli /V\email: [EMAIL PROTECTED] /( )\ weblog: http://categorically.net/d/blog/ ^^-^^ preferred distro: Debian GNU/Linux http://www.debian.orgIndex: t/p6rules/ws.t === --- t/p6rules/w

Added tests to t/p6rules/ws.t

2005-05-14 Thread Dino Morelli
bar', ':w foo -? bar', 'basic ws match \s+ \s*'); p6rule_is ('foo -bar', ':w foo -? bar', 'basic ws match \s+ \s*'); @@ -8,4 +23,6 @@ p6rule_is ('foo-bar', ':w foo -? bar', 'basic ws match \s* \s*'); p6ru

Re: small typo in PBC_COMPAT

2005-05-14 Thread Dino Morelli
On Thu, 12 May 2005, Autrijus Tang wrote: >On Wed, May 11, 2005 at 06:09:00PM -0400, Dino Morelli wrote: >> >Feel free to correct 'no_plan'. I'll happily apply any and all >> >patches to the tests, and those with commit privs are welcome >> >to direct

rules trouble

2005-05-11 Thread Dino Morelli
sure which ways are "right". The actual failing tests: my $targ = qq{ foobar baz quux zot\tfum}; p6rule_is ($targ, ':w::baz quux', 'baz\s+quux or baz\s*quux matches'); p6rule_is ($targ, ':w::zot fum', 'zot\s+fum or zot\s*fum matches

Re: small typo in PBC_COMPAT

2005-05-11 Thread Dino Morelli
ely >need more. Tests are especially needed for: > - Rules specified with and without :w modifiers > - calls to subrules > - named alias captures > - numbered alias captures > - \s \S \w \W \d \D \n \N I figured this for a good opportunity to get the hang of the new rules

Re: [PATCH] imcc/docs using .pir

2005-05-10 Thread Dino Morelli
On Tue, 10 May 2005, Leopold Toetsch wrote: >Dino Morelli <[EMAIL PROTECTED]> wrote: > >> I modified some of the .pod files in imcc/docs/ to reflect using .pir >> instead of .imc > >Thanks, applied. >leo Thank you, leo. Some of these .pod files are

[PATCH] imcc/docs using .pir

2005-05-09 Thread Dino Morelli
instead of .imc Patch attached. -Dino -- .~.Dino Morelli /V\email: [EMAIL PROTECTED] /( )\ weblog: http://categorically.net/d/blog/ ^^-^^ preferred distro: Debian GNU/Linux http://www.debian.orgIndex: imcc/docs/imcc.pod ==

Re: [PATCH] make testr

2005-05-07 Thread Dino Morelli
On Sat, 7 May 2005, Dino Morelli wrote: >On Sat, 7 May 2005, Leopold Toetsch wrote: > >>Dino Morelli <[EMAIL PROTECTED]> wrote: >>> On Fri, 6 May 2005, Leopold Toetsch wrote: >> >>>>"make testr" is broken. We need some replacement for i

Re: [PATCH] make testr

2005-05-07 Thread Dino Morelli
On Sat, 7 May 2005, Leopold Toetsch wrote: >Dino Morelli <[EMAIL PROTECTED]> wrote: >> On Fri, 6 May 2005, Leopold Toetsch wrote: > >>>"make testr" is broken. We need some replacement for it. It does: > >[ and should do ] > >>>$ ./parrot -o

Re: [PATCH] make testr

2005-05-06 Thread Dino Morelli
my $meth = $parrot_test_map{$func}; ------- Also: I'm new. I love Perl. Reading about and waiting for Perl 6 has been killing me. I want to contribute. So, greetings to the group! :-) >Thanks, >leo -Dino -- .~.Dino Morelli /V\email: [EMAIL PROTECTED] /( )\ weblog: http://categorically.net/d/blog/ ^^-^^ preferred distro: Debian GNU/Linux http://www.debian.org