[perl #39843] [TODO] Tcl - Make todo tests show up as failures in dev environment

2006-07-16 Thread via RT
# New Ticket Created by Matt Diephouse # Please include the string: [perl #39843] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=39843 > As of right now, Tcl has some failing tests skipped, some todo'd, and other simply f

[perl #39842] [PATCH] Win32 PLATFORMS update (r13309)

2006-07-16 Thread via RT
# New Ticket Created by Ron Blaschke # Please include the string: [perl #39842] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=39842 > Attached patch updates PLATFORMS with the number of failing tests on my Windows XP box w

[perl #39715] [TODO] IMCC errors should throw Parrot exceptions

2006-07-16 Thread Leopold Toetsch via RT
Applied as r13307. Still needs some tweaking, e.g. fix the failing past.t, but good enough for now. leo

[perl #38887] Result of INFINITY or NAN stringification is platform dependent

2006-07-16 Thread Ron Blaschke
I'm looking into this issue and would like to ask for some advice. I have added the following platform dependent functions. int Parrot_math_isnan(double) int Parrot_math_finite(double) On Win32 the implementation is simple because the IEEE recommended functions _finite and _isnan are supported.

[perl #39842] [PATCH] Win32 PLATFORMS update (r13309)

2006-07-16 Thread Will Coleda via RT
Thanks, applied as r13316.

[perl #39842] [PATCH] Win32 PLATFORMS update (r13309)

2006-07-16 Thread Will Coleda via RT
Thanks, applied as r13316.

[META] Re: [perl #39842] [PATCH] Win32 PLATFORMS update (r13309)

2006-07-16 Thread Dr.Ruud
"Will Coleda via RT" schreef: > Thanks, applied as r13316. Twice? 3c3 < Xref: nntp.perl.org perl.perl6.internals:34222 --- > Xref: nntp.perl.org perl.perl6.internals:34223 7c7 < Received: (qmail 22397 invoked from network); 16 Jul 2006 15:09:07 - --- > Received: (qmail 22778 invoked from net

Re: [perl #39823] [CAGE] tools/dev/run_indent.pl -- this should be a test

2006-07-16 Thread jerry gay
On 7/15/06, Guest via RT <[EMAIL PROTECTED]> wrote: Also, is Parrot::Config no more? Can you please tell me what has replaced it? Thanks! Swaroop C is generated by C. so you won't find it in a fresh working copy. you'll see it under C, which may mean you need to add a line like C to your code

[perl #39850] [TODO] [CAGE] lack Parrot::Config confusing....

2006-07-16 Thread via RT
# New Ticket Created by Will Coleda # Please include the string: [perl #39850] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=39850 > To de-confuse and cut back on one of the most common recent FAQs: 1) Create a stub modul

[perl #39846] [PATCH] Use only non-interpolated quotes for substituted values in dynpmc.pl

2006-07-16 Thread via RT
# New Ticket Created by Ron Blaschke # Please include the string: [perl #39846] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=39846 > Problem dynpmc.pl uses interpolated quotes to set up compiler and linker flags, whic

[perl #39778] Segfault when using a Namespace with an Iterator

2006-07-16 Thread Matt Diephouse via RT
mdiep wrote: > Trying to use an Iterator with a NameSpace makes Parrot segfault: > >mini:~/Projects/parrot mdiep$ cat test.pir >.sub main :main > .local pmc iter, ns > ns = get_namespace > > iter = new .Iterator, ns >loop: > unless iter goto loop_end > $P0 = s

[perl #39851] [BUG] .HLL doesn't reset the .namespace

2006-07-16 Thread via RT
# New Ticket Created by Matt Diephouse # Please include the string: [perl #39851] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=39851 > Switching HLLs with C< .HLL > doesn't reset the namespace. This leads to some confus

[perl #39852] [TODO] Tcl - Create the ::tcl namespace properly

2006-07-16 Thread via RT
# New Ticket Created by Matt Diephouse # Please include the string: [perl #39852] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=39852 > In order to pass some [namespace children] tests, I added this to the top of runtime

[perl #39778] Segfault when using a Namespace with an Iterator

2006-07-16 Thread Bob Rogers
From: "Matt Diephouse via RT" <[EMAIL PROTECTED]> Date: Sun, 16 Jul 2006 14:37:39 -0700 mdiep wrote: > Trying to use an Iterator with a NameSpace makes Parrot segfault: > >mini:~/Projects/parrot mdiep$ cat test.pir >.sub main :main > .local pmc iter, ns >

IMCC Reentarancy

2006-07-16 Thread Vishal Soni
Hi, I have been working on trying to make reenterant and/or thread-safe. There are couple of things that have come up which might make it difficult to make the existing implemention thread-safe/re-entrant. The current implementation is implemented using Flex and YACC. Flex implementation has li

Re: IMCC Reentarancy

2006-07-16 Thread Vishal Soni
Hi, Please disregard the previous mail. Hit the wrong shortcut key!! I have been working on trying to make reenterant and/or thread-safe. There are couple of things that have come up which might make it difficult to make the existing implementation thread-safe/re-entrant. The current implementa

Re: IMCC Reentarancy

2006-07-16 Thread Audrey Tang
在 2006/7/16 下午 11:57 時,Vishal Soni 寫到: a. A clean implementation rather than a prototypish implementation I think that the lemon+re2c, being the more modern parsing tools, will make refactoring/hacking considerably easier. Whilst you are converting the current IMCC implementation into