Plowing through the list of excepted tests in vms/test.com, we start
with t/io/argv.t. This version now works under VMS and Linux. It
should work under Windows as well, but I'd like someone to give it a
shot.
Here's what's been done:
The mixed logic about running programs has been consolda
On Tue, Nov 06, 2001 at 09:27:44PM -0500, Michael G Schwern wrote:
> Plowing through the list of excepted tests in vms/test.com, we start
> with t/io/argv.t. This version now works under VMS and Linux. It
> should work under Windows as well, but I'd like someone to give it a
> shot.
>
> Here's
On Wed, Nov 07, 2001 at 06:49:58AM +0200, Jarkko Hietaniemi wrote:
> My patch(1) doesn't like this at all.
Blarg. Maybe things got twisted with all the little t/test.pl patches
and the ftping back and forth. Lemme try a fresh Perl.
--
Michael G. Schwern <[EMAIL PROTECTED]>http://www.p
On Wed, Nov 07, 2001 at 01:56:40AM -0500, Michael G Schwern wrote:
> On Wed, Nov 07, 2001 at 06:49:58AM +0200, Jarkko Hietaniemi wrote:
> > My patch(1) doesn't like this at all.
>
> Blarg. Maybe things got twisted with all the little t/test.pl patches
> and the ftping back and forth. Lemme try
In the course of revamping t/io/argv.t for VMS, I've added two
functions to t/test.pl.
isnt() is useful for replacing this sort of thing:
print "not " unless defined $foo;
print "ok 42\n";
with
isnt($foo, undef);
The advantage being if it fails $foo will be printed out.
next_tes
On Tue, Nov 06, 2001 at 08:58:45PM -0500, Michael G Schwern wrote:
> In the course of revamping t/io/argv.t for VMS, I've added two
> functions to t/test.pl.
>
> isnt() is useful for replacing this sort of thing:
>
> print "not " unless defined $foo;
> print "ok 42\n";
>
> with
>
>