This distribution has been tested as part of the cpan-testers
effort to test as many new uploads to CPAN as possible.  See
http://testers.cpan.org/

Please cc any replies to [EMAIL PROTECTED] to keep other
test volunteers informed and to prevent any duplicate effort.

-- 

Running make test
PERL_DL_NONLAZY=1 /usr/local/bin/perl -Iblib/arch -Iblib/lib 
-I/usr/local/lib/perl5/5.00503/ppc-linux -I/usr/local/lib/perl5/5.00503 test.pl
1..2
ok 1
Can't locate Games/Cards.pm in @INC (@INC contains: 
/usr/local/lib/perl5/5.00503/ppc-linux /usr/local/lib/perl5/5.00503 
/usr/local/lib/perl5/site_perl/5.005/ppc-linux /usr/local/lib/perl5/site_perl/5.005 .) 
at war.pl line 11.
BEGIN failed--compilation aborted at war.pl line 11.
not ok 2
  /usr/bin/make test -- OK

When running perl from a ``, @INC does not get propagated to the new
instance of perl.  The following fixes the test:

bin@schinder% diff -u test.pl- test.pl
--- test.pl-    Sun Jan 23 19:42:42 2000
+++ test.pl     Sun Jan 23 19:41:43 2000
@@ -19,7 +19,7 @@
 # of the test code):
 
 # Try to run war
-@output = `perl war.pl`;
+@output = `perl -Iblib/lib war.pl`;
 $lastline = $output[-1];
 if ($lastline =~ /give up|wins after/) {
     print "ok 2\n";

--

Summary of my perl5 (5.0 patchlevel 5 subversion 3) configuration:
  Platform:
    osname=linux, osvers=2.2.10, archname=ppc-linux
    uname='linux schinder.clark.net 2.2.10 #7 fri jun 18 10:13:46 est 1999 ppc unknown 
'
    hint=recommended, useposix=true, d_sigaction=define
    usethreads=undef useperlio=undef d_sfio=undef
  Compiler:
    cc='gcc', optimize='-O2', gccversion=egcs-2.91.66 19990314 (egcs-1.1.2 release)
    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=8
    alignbytes=8, usemymalloc=n, prototype=define
  Linker and Libraries:
    ld='gcc', ldflags =' -L/usr/local/lib'
    libpth=/usr/local/lib /lib /usr/lib
    libs=-lnsl -lndbm -lgdbm -ldb -ldl -lm -lc -lposix -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 -L/usr/local/lib'

Reply via email to