Re: [perl #56304] AutoReply: smokej consumes all memory Revision: 28672 on linux

2008-06-24 Thread Andy Bach
Yeah, it's runtime.t top - 11:14:36 up 1 day, 3:37, 4 users, load average: 1.11, 0.75, 0.34 Tasks: 95 total, 2 running, 93 sleeping, 0 stopped, 0 zombie Cpu(s): 14.8% us, 35.5% sy, 0.0% ni, 49.7% id, 0.0% wa, 0.0% hi, 0.0% si Mem: 2074556k total, 1251040k used, 823516k free,

Re: Bugs or Unimplemented Features?

2008-06-24 Thread Patrick R. Michaud
On Tue, Jun 24, 2008 at 11:18:31PM +0100, Ovid wrote: > I'm trying to figure out the best way of knowing which features are > implemented. Looking through the tests in languages/perl6/t/ is a bit > disappointing as some things I know have been implemented aren't there > (e.g., types on sub signatu

[perl #56236] [BUG]: Unable to 'make perl6' on OS X 10.4 PPC

2008-06-24 Thread James Keenan via RT
And now I've got r27393 on 2007-05-08 working ... even though I previously deemed it hanging indefinitely. kid51, befuddled

[perl #56236] [BUG]: Unable to 'make perl6' on OS X 10.4 PPC

2008-06-24 Thread James Keenan via RT
On Tue Jun 24 05:28:42 2008, [EMAIL PROTECTED] wrote: > On Mon Jun 23 19:20:57 2008, [EMAIL PROTECTED] wrote: > > Failed to 'make perl6' at r 27371: May 07. > > I tried again, and 'make perl6' succeeded at r27371. > > The plot thickens! 'make perl6 succeeded at r27388, 2008-05-07.

Re: [perl #56236] [BUG]: Unable to 'make perl6' on OS X 10.4 PPC

2008-06-24 Thread chromatic
On Tuesday 24 June 2008 12:13:53 Ovid wrote: > Nope. 'make test' and 'make perl6' both return the following: > > ../../parrot -o perl6.pbc perl6.pir > src/interpreter.c:1030: failed assertion > 'interp->op_count == core->op_count' > make: *** [perl6.pbc] Abort trap > > Exact same thing a

Re: Bugs or Unimplemented Features?

2008-06-24 Thread luben karavelov
Ovid wrote: That works just fine, so I know we have types on signatures. But now this fails: # remove the 'Int' and this works sub fact (Int $n) { if 0 == $n { return 1; } else { return $n * fact($n - 1); } } say fact(5); The failure is at runtime, not com

Re: [perl #56274] [PATCH] Re: design problem with :outer

2008-06-24 Thread Patrick R. Michaud
On Tue, Jun 24, 2008 at 03:43:34PM -0700, Mehmet Yavuz Selim Soyturk via RT wrote: > There is another problem with :outer. It does not let you create inner > functions dynamically. For example, I couldn't use it to compile next > ECMAScript code: > > function outer() { > var i = 0; >

[perl #56236] [BUG]: Unable to 'make perl6' on OS X 10.4 PPC

2008-06-24 Thread James Keenan via RT
On Tue Jun 24 14:53:53 2008, [EMAIL PROTECTED] wrote: > Forget everything I wrote. I missed a couple of files in my cleaning. > I got rid of them, did a 'make clean && make perl6' and now everything > is just dandy. > Glad to hear that -- but since you are on Intel, I suspected your results wou

Re: [perl #56282] Re: [PATCH] Re: design problem with :outer

2008-06-24 Thread Patrick R. Michaud
Based on discussion earlier today in #parrotsketch, here's the detailed specification for resolving outer subs using :lexid . If someone wants to fold this into pdd20 somehow (on or about line 233), that would be especially helpful. Every Parrot subroutine that serves as a lexical outer

Re: Bugs or Unimplemented Features?

2008-06-24 Thread Moritz Lenz
Ovid wrote: > I'm trying to figure out the best way of knowing which features are > implemented. Looking through the tests in languages/perl6/t/ is a bit > disappointing as some things I know have been implemented aren't there > (e.g., types on sub signatures). Should I be looking elsewhere? In

Re: [perl #56236] [BUG]: Unable to 'make perl6' on OS X 10.4 PPC

2008-06-24 Thread chromatic
On Tuesday 24 June 2008 14:33:03 Ovid wrote: > > Guess: you have a libparrot.so (or .dylib, or whatever Mac OS X > > thinks looks > > good with a black turtleneck) somewhere getting loaded before > > blib/lib/libparrot.so. > Bingo! Don't know how to trace that, but a quick locate confirmed an >

Re: [perl #56274] [PATCH] Re: design problem with :outer

2008-06-24 Thread Mehmet Yavuz Selim Soyturk
There is another problem with :outer. It does not let you create inner functions dynamically. For example, I couldn't use it to compile next ECMAScript code: function outer() { var i = 0; return eval("function() { return i++; }"); } Is it not possible to have an opcode tha

[perl #56304] smokej consumes all memory Revision: 28672 on linux

2008-06-24 Thread Andy Bach
# New Ticket Created by "Andy Bach" # Please include the string: [perl #56304] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=56304 > running smokej from cron, all seems to build find and smoke.html gets made/submitted but

Bugs or Unimplemented Features?

2008-06-24 Thread Ovid
I'm trying to figure out the best way of knowing which features are implemented. Looking through the tests in languages/perl6/t/ is a bit disappointing as some things I know have been implemented aren't there (e.g., types on sub signatures). Should I be looking elsewhere? So for right now, I'm l

Re: [perl #56236] [BUG]: Unable to 'make perl6' on OS X 10.4 PPC

2008-06-24 Thread Ovid
--- chromatic <[EMAIL PROTECTED]> wrote: > > Nope. 'make test' and 'make perl6' both return the following: > > > > ../../parrot -o perl6.pbc perl6.pir > > src/interpreter.c:1030: failed assertion > > 'interp->op_count == core->op_count' > > make: *** [perl6.pbc] Abort trap > Guess: you

Re: [perl #56236] [BUG]: Unable to 'make perl6' on OS X 10.4 PPC

2008-06-24 Thread Ovid
Forget everything I wrote. I missed a couple of files in my cleaning. I got rid of them, did a 'make clean && make perl6' and now everything is just dandy. Thanks for the help. Cheers, Ovid -- Buy the book - http://www.oreilly.com/catalog/perlhks/ Tech blog- http://use.perl

Re: [perl #56236] [BUG]: Unable to 'make perl6' on OS X 10.4 PPC

2008-06-24 Thread Ovid
--- Ovid <[EMAIL PROTECTED]> wrote: > > I tried again, and 'make perl6' succeeded at r27371. > > > > The plot thickens! > > w00t! I'll try this when I get home tonight. This is great news. Nope. 'make test' and 'make perl6' both return the following: ../../parrot -o perl6.pbc perl6.pir

[perl #56274] [PATCH] Re: design problem with :outer

2008-06-24 Thread Patrick R. Michaud (via RT)
# New Ticket Created by Patrick R. Michaud # Please include the string: [perl #56274] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=56274 > On Mon, Jun 23, 2008 at 06:27:31PM -0500, Patrick R. Michaud wrote: > There appear

[perl #56284] Re: [PATCH] Re: design problem with :outer

2008-06-24 Thread via RT
# New Ticket Created by chromatic # Please include the string: [perl #56284] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=56284 > On Monday 23 June 2008 21:56:54 Patrick R. Michaud wrote: > Alas, the patch doesn't seem t

[perl #56282] Re: [PATCH] Re: design problem with :outer

2008-06-24 Thread Patrick R. Michaud (via RT)
# New Ticket Created by Patrick R. Michaud # Please include the string: [perl #56282] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=56282 > On Mon, Jun 23, 2008 at 09:33:43PM -0500, Patrick R. Michaud wrote: > On Mon, Jun

[perl #56278] [PATCH] Re: design problem with :outer

2008-06-24 Thread via RT
# New Ticket Created by Bob Rogers # Please include the string: [perl #56278] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=56278 > From: "Patrick R. Michaud" <[EMAIL PROTECTED]> Date: Mon, 23 Jun 2008 21:33:43 -0500

Re: [perl #56236] [BUG]: Unable to 'make perl6' on OS X 10.4 PPC

2008-06-24 Thread Ovid
--- James Keenan via RT <[EMAIL PROTECTED]> wrote: > On Mon Jun 23 19:20:57 2008, [EMAIL PROTECTED] wrote: > > Failed to 'make perl6' at r 27371: May 07. > > I tried again, and 'make perl6' succeeded at r27371. > > The plot thickens! w00t! I'll try this when I get home tonight. This is great

[perl #56236] [BUG]: Unable to 'make perl6' on OS X 10.4 PPC

2008-06-24 Thread James Keenan via RT
On Mon Jun 23 19:20:57 2008, [EMAIL PROTECTED] wrote: > Failed to 'make perl6' at r 27371: May 07. I tried again, and 'make perl6' succeeded at r27371. The plot thickens!