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. -- Dear Herbert Breunung, This is a computer-generated report for Perl6-Doc-0.33_4 on perl-5.10.0, created automatically by CPAN-Reporter-1.0601 and sent to the CPAN Testers mailing list. If you have received this email directly, it is because the person testing your distribution chose to send a copy to your CPAN email address; there may be a delay before the official report is received and processed by CPAN Testers. Thank you for uploading your work to CPAN. However, it appears that there were some problems with your distribution. If these results are not what you expect or if you would like to learn how to avoid FAIL reports for missing dependencies, unsupported operating systems, etc., please consult "Notes for CPAN Authors" on the CPAN Testers Wiki: http://cpantest.grango.org Sections of this report: * Tester comments * Program output * Prerequisites * Environment and other context ------------------------------ TESTER COMMENTS ------------------------------ Additional comments from tester: [none provided] ------------------------------ PROGRAM OUTPUT ------------------------------ Output from 'make test': PERL_DL_NONLAZY=1 /tmp/drhyde/perl-5.10.0/bin/perl "-MExtUtils::Command::MM" "-e" "test_harness(0, 'inc', 'blib/lib', 'blib/arch')" t/*.t t/compile....ok t/getraw.....readline() on closed filehandle S at t/getraw.t line 8. # Failed test at t/getraw.t line 10. # got: '=encoding utf8 # # =head1 NAME # # Synopsis_01 - Overview # # =head1 AUTHOR # # Larry Wall <[EMAIL PROTECTED]> # # =head1 VERSION # # Maintainer: Larry Wall <[EMAIL PROTECTED]> # Date: 10 Aug 2004 # Last Modified: 30 Jan 2007 # Number: 1 # Version: 6 # # This document originally summarized Apocalypse 1, which covers the # initial design concept. That original summary may be found below # under "Random Thoughts". However, these Synopses also contain # updates to reflect the evolving design of Perl 6 over time, unlike # the Apocalypses, which are frozen in time as "historical documents". # These updates are not marked--if a Synopsis disagrees with its # Apocalypse, assume the Synopsis is correct. # # Another assumption has been that if we don't talk about something in these # Synopses, it's the same as it is in Perl 5. Soon we plan to fill in # the gaps with the Perl 5 details though. # # =head1 Project Plan # # Mostly, we're just a bunch of ants all cooperating (sort of) to haul # food toward the nest (on average). There are many groups of people # working on various bits and pieces as they see fit, since this is # primarily a volunteer effort. # # This document does not attempt to summarize all these subprojects--see # the various websites for Parrot and Pugs and Perl 6 for such # information. What we can say here is that, unlike how it was with # Perl 5, none of these projects is designed to be the Official Perl. # Perl 6 is anything that passes the official test suite. This test # suite was initially developed under the Pugs project because that # project is the furthest along in exploring the high-level semantics # of Perl 6. (Other projects are better at other things, such as speed # or interoperability.) However, the Pugs project views the test suite # as community property, and is working towards platform neutrality, # so that Perl 6 is defined primarily by its desired semantics, not by # accidents of history. # # Another aspect of this is the Perl 6 compiler will be self-hosting. # That is, the compiler will eventually compile itself, at least down # to the point where various code-generating backends can take over. # This largely removes platform dependencies from the frontend, so that # only the backends need to worry about platform-specific issues. # # But above all, our project plan is simply to help people find a # spot where they can feel like they're creating the future, both for # themselves and for others. Around here, that's what we call fun. # # =head1 Random Thoughts # # =over 4 # # =item * # # The word "apocalypse" historically meant merely "a revealing", # and we're using it in that unexciting sense. # # =item * # # If you ask for RFCs from the general public, you get a lot of # interesting but contradictory ideas, because people tend to stake # out polar positions, and none of the ideas can build on each other. # # =item * # # Larry's First Law of Language Redesign: Everyone wants the colon. # # =item * # # RFCs are rated on "PSA": whether they point out a real Problem, # whether they present a viable Solution, and whether that solution is # likely to be Accepted as part of Perl 6. # # =item * # # Languages should be redesigned in roughly the same order as you would # present the language to a new user. # # =item * # # Perl 6 should be malleable enough that it can evolve into the imaginary # perfect language, Perl 7. This darwinian imperative implies support # for multiple syntaxes above and multiple platforms below. # # =item * # # Many details may change, but the essence of Perl will remain unchanged. # Perl will continue to be a multiparadigmatic, context-sensitive # language. We are not turning Perl into any other existing language. # # =item * # # Migration is important. The perl interpreter will assume that it # is being fed Perl 5 code unless the code starts with a "class" or # "module" keyword, or you specifically tell it you're running Perl 6 # code in some other way, such as by: # # #!/usr/bin/perl6 # use v6.0; # v6; # # =item * # # Migration in the other direction is also important. In Perl 6 # mode, one can drop back to Perl 5 mode with C<use v5> at the # beginning of a lexical block. Such blocks may be nested: # # use v6-alpha; # # ...some Perl 6 code... # { # use v5; # # ...some Perl 5 code... # { # use v6-alpha; # # ...more Perl 6 code... # } # } # # =item * # # Scaling is one of those areas where Perl needs to be multiparadigmatic # and context sensitive. Perl 5 code is not strict by default, while # Perl 6 code is. But it should be easy to relax with C<-e> or # a bare version number: # # perl -e '$x = 1' # # #!/usr/bin/perl # v6; $x = 1; # # =item * # # It must be possible to write policy metamodules that invoke other # modules on the user's behalf. # # =item * # # If you want to treat everything as objects in Perl 6, Perl will help # you do that. If you don't want to treat everything as objects, Perl # will help you with that viewpoint as well. # # =item * # # Operators are just functions with funny names and syntax. # # =item * # # Language designers are still necessary to synthesize unrelated ideas # into a coherent whole. # # =back # # =for vim:set expandtab sw=4: # ' # expected: undef # Looks like you failed 1 test of 1. dubious Test returned status 1 (wstat 256, 0x100) DIED. FAILED test 1 Failed 1/1 tests, 0.00% okay Failed Test Stat Wstat Total Fail List of Failed ------------------------------------------------------------------------------- t/getraw.t 1 256 1 1 1 Failed 1/2 test scripts. 1/2 subtests failed. Files=2, Tests=2, 0 wallclock secs ( 0.33 cusr + 0.06 csys = 0.39 CPU) Failed 1/2 test programs. 1/2 subtests failed. *** Error code 1 Stop. make: stopped in /tmp/drhyde/.cpan/build/Perl6-Doc-0.33_4-ibjEVg ------------------------------ PREREQUISITES ------------------------------ Prerequisite modules loaded: No requirements found ------------------------------ ENVIRONMENT AND OTHER CONTEXT ------------------------------ Environment variables: AUTOMATED_TESTING = 1 PATH = /arpa/af/d/drhyde/bin:/usr/pkg/bin:/usr/bin:/bin:/usr/pkg/games:/usr/pkg/X11R6/bin PERL5LIB = PERL5_CPANPLUS_IS_RUNNING = 17589 PERL5_CPAN_IS_RUNNING = 17589 SHELL = /usr/pkg/bin/bash TERM = vt100 Perl special variables (and OS-specific diagnostics, for MSWin32): $^X = /tmp/drhyde/perl-5.10.0/bin/perl $UID/$EUID = 40631 / 40631 $GID = 500 500 $EGID = 500 500 Perl module toolchain versions installed: Module Have ------------------- --------- CPAN 1.9205 Cwd 3.2501 ExtUtils::CBuilder 0.21 ExtUtils::Command 1.13 ExtUtils::Install 1.44 ExtUtils::MakeMaker 6.42 ExtUtils::Manifest 1.51_01 ExtUtils::ParseXS 2.18_02 File::Spec 3.2501 Module::Build 0.2808_01 Module::Signature n/a Test::Harness 2.64 Test::More 0.72 YAML 0.66 YAML::Syck n/a version 0.74 -- Summary of my perl5 (revision 5 version 10 subversion 0) configuration: Platform: osname=netbsd, osvers=2.1.0_stable, archname=alpha-netbsd uname='netbsd sdf 2.1.0_stable netbsd 2.1.0_stable (sdf) #0: fri mar 30 02:24:32 utc 2007 [EMAIL PROTECTED]:varsysarchalphacompilesdf alpha ' config_args='-de -Dprefix=/tmp/drhyde/perl-5.10.0' hint=recommended, useposix=true, d_sigaction=define useithreads=undef, usemultiplicity=undef useperlio=define, d_sfio=undef, uselargefiles=define, usesocks=undef use64bitint=define, use64bitall=define, uselongdouble=undef usemymalloc=n, bincompat5005=undef Compiler: cc='cc', ccflags ='-fno-strict-aliasing -pipe -I/usr/pkg/include', optimize='-O', cppflags='-fno-strict-aliasing -pipe -I/usr/pkg/include' ccversion='', gccversion='3.3.3 (NetBSD nb3 20040520)', gccosandvers='' intsize=4, longsize=8, ptrsize=8, doublesize=8, byteorder=12345678 d_longlong=define, longlongsize=8, d_longdbl=define, longdblsize=8 ivtype='long', ivsize=8, nvtype='double', nvsize=8, Off_t='off_t', lseeksize=8 alignbytes=8, prototype=define Linker and Libraries: ld='cc', ldflags =' -Wl,-rpath,/usr/pkg/lib -Wl,-rpath,/usr/local/lib -L/usr/pkg/lib' libpth=/usr/pkg/lib /lib /usr/lib libs=-lbind -lgdbm -lm -lcrypt -lutil -lc -lposix perllibs=-lbind -lm -lcrypt -lutil -lc -lposix libc=/lib/libc.so, so=so, useshrplib=false, libperl=libperl.a gnulibc_version='' Dynamic Linking: dlsrc=dl_dlopen.xs, dlext=so, d_dlsymun=undef, ccdlflags='-Wl,-E ' cccdlflags='-DPIC -fPIC ', lddlflags='--whole-archive -shared -L/usr/pkg/lib'
