Update of /cvsroot/module-build/Module-Build/t
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26384/t
Modified Files:
Tag: release-0_26_branch
compat.t
Log Message:
Windows does not support the concept of tilde-expansion, nor does it support the getpw* routines, so we skip the tilde expansion code and tests related to it.
Index: compat.t
===================================================================
RCS file: /cvsroot/module-build/Module-Build/t/compat.t,v
retrieving revision 1.17.2.1
retrieving revision 1.17.2.2
diff -C2 -d -r1.17.2.1 -r1.17.2.2
*** compat.t 29 Dec 2004 02:54:36 -0000 1.17.2.1
--- compat.t 6 Jan 2005 04:08:44 -0000 1.17.2.2
***************
*** 152,156 ****
my $b2 = Module::Build->current;
ok $b2->install_base;
! ok $b2->install_base !~ /^~/, 1, "Tildes should be expanded";
$build->do_system(@make, 'realclean');
--- 152,157 ----
my $b2 = Module::Build->current;
ok $b2->install_base;
! skip $^O =~ /MSWin/ ? 'Windows does not support tilde-expansion' : '',
! $b2->install_base !~ /^~/, 1, "Tildes should be expanded";
$build->do_system(@make, 'realclean');
|