Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the Path-Class CPAN distribution.

Maintainer(s)' notes

I prefer that bugs & patches are filed on GitHub rather than on RT: https://github.com/kenahoo/Path-Class/issues. Thanks.

Report information
The Basics
Id: 3210
Status: resolved
Priority: 0/
Queue: Path-Class

People
Owner: Nobody in particular
Requestors: muenalan [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 0.03_01
Fixed in: (no value)



Subject: [perl5.8.0/Win32] FAILED test 35
Reported some prob in 0.03. Greetings, Murat CPAN.pm: Going to build K/KW/KWILLIAMS/Path-Class-0.03_01.tar.gz Checking if your kit is complete... Looks good Warning: Guessing NAME [Path-Class-0.03] from current directory name. Writing Makefile for Path-Class-0.03 Microsoft (R) Program Maintenance Utility Version 7.00.9466 Copyright (C) Microsoft Corporation. All rights reserved. cp lib/Path/Class/Entity.pm blib\lib\Path/Class/Entity.pm cp lib/Path/Class.pm blib\lib\Path/Class.pm cp lib/Path/Class/Dir.pm blib\lib\Path/Class/Dir.pm cp lib/Path/Class/File.pm blib\lib\Path/Class/File.pm "C:\Programme\Microsoft Visual Studio .NET\Vc7\bin\nmake.exe" -- OK Running make test Microsoft (R) Program Maintenance Utility Version 7.00.9466 Copyright (C) Microsoft Corporation. All rights reserved. C:\Programme\Perl\bin\perl.exe "-MExtUtils::Command::MM" "-e" "test_harness(0, 'blib\lib', 'blib\arch')" t\01-basic.t t\02-foreign.t t\03-filesystem.t t\01-basic.........ok 7/39# Test 35 got: 'C:\.cpan\build\Path-Class-0.03_01' (t\01-basic.t at line 71) # Expected: 'C:\.cpan\build\Path-Class-0.03_01/.' # t\01-basic.t line 71 is: ok dir()->absolute, Cwd::cwd; t\01-basic.........FAILED test 35 Failed 1/39 tests, 97.44% okay t\02-foreign.......ok 2/20 skipped: Can't test VMS code on other platforms t\03-filesystem....ok Failed Test Stat Wstat Total Fail Failed List of Failed ------------------------------------------------------------------------------- t\01-basic.t 39 1 2.56% 35 2 subtests skipped. Failed 1/3 test scripts, 66.67% okay. 1/93 subtests failed, 98.92% okay. NMAKE : fatal error U1077: 'C:\Programme\Perl\bin\perl.exe' : return code '0xff' Stop. "C:\Programme\Microsoft Visual Studio .NET\Vc7\bin\nmake.exe" test -- NOT OK Running make install make test had returned bad status, won't install without force Show quoted text
cpan>
Date: Mon, 11 Aug 2003 23:23:15 -0500
Subject: Re: [cpan #3210] [perl5.8.0/Win32] FAILED test 35
From: Ken Williams <ken [...] mathforum.org>
To: bug-Path-Class [...] rt.cpan.org
RT-Send-Cc:
I believe the following patch to t/01-basic.t will fix the problem. -Ken --- 01-basic.t 2003/07/09 14:35:25 1.3 +++ 01-basic.t 2003/08/12 04:21:20 @@ -68,7 +68,7 @@ ok dir(''), '/'; ok dir(), '.'; ok dir('', 'var', 'tmp'), '/var/tmp'; - ok dir()->absolute, Cwd::cwd; + ok dir()->absolute, File::Spec->canonpath(Cwd::cwd); }