Skip Menu |

This queue is for tickets about the ExtUtils-MakeMaker CPAN distribution.

Report information
The Basics
Id: 4290
Status: resolved
Priority: 0/
Queue: ExtUtils-MakeMaker

People
Owner: Nobody in particular
Requestors: blair [...] orcaware.com
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 6.19
Fixed in: (no value)



Subject: make test failure on 5.00503
Hello, I'm getting the following failure with 6.19 on RedHat 9 with perl 5.005_03: t/basic.................ok t/bytes.................ok 3/4 skipped: bytes.pm appeared in 5.6 t/Command...............ok 1/34Not enough arguments for mkdir at t/Command.t line 219, near "'d2utest';" Execution of t/Command.t aborted due to compilation errors. # Looks like you planned 34 tests but only ran 1. # Looks like your test died just after 1. t/Command...............dubious Test returned status 255 (wstat 65280, 0xff00) DIED. FAILED tests 2-34 Failed 33/34 tests, 2.94% okay t/hints.................ok Best, Blair % /opt/i386-linux/installed/perl-5.005_03/bin/perl -V Summary of my perl5 (5.0 patchlevel 5 subversion 3) configuration: Platform: osname=linux, osvers=2.4.18-17.8.0, archname=i686-linux uname='linux orcaware.com 2.4.18-17.8.0 #1 tue oct 8 13:51:08 edt 2002 i686 i686 i386 gnulinux ' hint=recommended, useposix=true, d_sigaction=define usethreads=undef useperlio=undef d_sfio=undef Compiler: cc='/opt/i386-linux/gcc/bin/gcc', optimize='-O3', gccversion=3.2 cppflags='-Dbool=char -DHAS_BOOL' ccflags ='-Dbool=char -DHAS_BOOL' stdchar='char', d_stdstdio=undef, usevfork=false intsize=4, longsize=4, ptrsize=4, doublesize=8 d_longlong=define, longlongsize=8, d_longdbl=define, longdblsize=12 alignbytes=4, usemymalloc=n, prototype=define Linker and Libraries: ld='/opt/i386-linux/gcc/bin/gcc', ldflags ='' libpth=/lib /usr/lib libs=-lnsl -lgdbm -ldl -lm -lc -lcrypt libc=, so=so, useshrplib=false, libperl=libperl.a Dynamic Linking: dlsrc=dl_dlopen.xs, dlext=so, d_dlsymun=undef, ccdlflags='-rdynamic' cccdlflags='-fpic', lddlflags='-shared' Characteristics of this binary (from libperl): Built under linux Compiled at Nov 6 2002 19:15:20 @INC: /opt/i386-linux/installed/perl-5.005_03/lib/5.00503/i686-linux /opt/i386-linux/installed/perl-5.005_03/lib/5.00503 /opt/i386-linux/installed/perl-5.005_03/lib/site_perl/5.005/i686-linux /opt/i386-linux/installed/perl-5.005_03/lib/site_perl/5.005 .
Date: Tue, 4 Nov 2003 17:23:50 -0800
From: Michael G Schwern <schwern [...] pobox.com>
To: Guest via RT <bug-ExtUtils-MakeMaker [...] rt.cpan.org>
CC: "AdminCc of cpan Ticket #4290": ;
Subject: Re: [cpan #4290] make test failure on 5.00503
RT-Send-Cc:
On Tue, Nov 04, 2003 at 11:45:31AM -0500, Guest via RT wrote: Show quoted text
> I'm getting the following failure with 6.19 on RedHat 9 with perl 5.005_03: > > t/basic.................ok > t/bytes.................ok > 3/4 skipped: bytes.pm appeared in 5.6 > t/Command...............ok 1/34Not enough arguments for mkdir at t/Command.t line 219, near "'d2utest';" > Execution of t/Command.t aborted due to compilation errors. > # Looks like you planned 34 tests but only ran 1. > # Looks like your test died just after 1.
Ooops. Guess I should have used mkpath. --- t/Command.t 2003/11/03 22:00:35 1.17 +++ t/Command.t 2003/11/05 01:22:52 @@ -216,7 +216,7 @@ } { - mkdir 'd2utest'; + mkpath 'd2utest'; open(FILE, '>d2utest/foo'); print FILE "stuff\015\012and thing\015\012"; close FILE; -- Michael G Schwern schwern@pobox.com http://www.pobox.com/~schwern/ Life is like a sewer. What you get out of it depends on what you put into it. - Tom Lehrer
Date: Tue, 4 Nov 2003 17:25:49 -0800
From: Michael G Schwern <schwern [...] pobox.com>
To: Guest via RT <bug-ExtUtils-MakeMaker [...] rt.cpan.org>
CC: "AdminCc of cpan Ticket #4290": ;
Subject: Re: [cpan #4290] make test failure on 5.00503
RT-Send-Cc:
Whoops, guess I should have tested that last patch first. --- t/Command.t 2003/11/03 22:00:35 1.17 +++ t/Command.t 2003/11/05 01:24:43 @@ -216,7 +216,7 @@ } { - mkdir 'd2utest'; + { local @ARGV = 'd2utest'; mkpath; } open(FILE, '>d2utest/foo'); print FILE "stuff\015\012and thing\015\012"; close FILE; -- Michael G Schwern schwern@pobox.com http://www.pobox.com/~schwern/ "How would you describe TKB? As a disk exerciser? The first manufacturer supplied computer virus?" -- Carl Friedberg in <04716E70DA1C6046BECA1F0A26579F7B02FA7E@babbage.esb.com>
Fixed in the snapshot on makemaker.org. Will be in 6.20 coming soon.