[PATCH t/io/argv.t vms/test.com t/test.pl] argv.t cleanup & fixes for VMS

2001-11-06 Thread Michael G Schwern
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

Re: [PATCH t/io/argv.t vms/test.com t/test.pl] argv.t cleanup & fixes for VMS

2001-11-06 Thread Jarkko Hietaniemi
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

Re: [PATCH t/io/argv.t vms/test.com t/test.pl] argv.t cleanup & fixes for VMS

2001-11-06 Thread Michael G Schwern
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

Re: [PATCH t/io/argv.t vms/test.com t/test.pl] argv.t cleanup & fixes for VMS

2001-11-06 Thread Michael G Schwern
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

[PATCH t/test.pl] Adding isnt() and next_test()

2001-11-06 Thread Michael G Schwern
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

Re: [PATCH t/test.pl] Adding isnt() and next_test()

2001-11-06 Thread Jarkko Hietaniemi
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 > >