Re: [svn:parrot] r21807 - in branches/reconfigure: . t/configure

2007-10-04 Thread James E Keenan
On Oct 4, 2007, at 12:30 AM, chromatic wrote: On Wednesday 03 October 2007 20:06:01 [EMAIL PROTECTED] wrote: When I first began to write tests for the packages underlying or used by Configure.pl, I figured it would be best to try to mimic Configure.pl's operation as closely as possible i

Re: [svn:parrot] r21807 - in branches/reconfigure: . t/configure

2007-10-03 Thread chromatic
On Wednesday 03 October 2007 22:12:36 jerry gay wrote: > hrmm. now that you mention it, i believe autoflush is on by default in > perls since 5.6.1, and since we require a minimum of 5.8.0 for parrot, > i believe that requirement renders this test moot. It *shouldn't* be on by default in any vers

Re: [svn:parrot] r21807 - in branches/reconfigure: . t/configure

2007-10-03 Thread jerry gay
On 10/3/07, chromatic <[EMAIL PROTECTED]> wrote: > On Wednesday 03 October 2007 20:06:01 [EMAIL PROTECTED] wrote: > > > +$| = 1; > > +is($|, 1, "output autoflush is set"); > > I keep seeing this code, and I'm not sure why it's there. Why do you need to > enable autoflush in the tests? You're not

Re: [svn:parrot] r21807 - in branches/reconfigure: . t/configure

2007-10-03 Thread chromatic
On Wednesday 03 October 2007 20:06:01 [EMAIL PROTECTED] wrote: > +$| = 1; > +is($|, 1, "output autoflush is set"); I keep seeing this code, and I'm not sure why it's there. Why do you need to enable autoflush in the tests? You're not printing anything (Test::Builder uses very different fileha