Steve Hay [Sat, 10 Oct 2009 11:20:43 +0000]
Sync ExtUtils-CBuilder test scripts with CPAN versions
This restores the test boilerplates that were removed when ExtUtils-CBuilder
was moved from lib/ to ext/ (
4d984b75f1859fc27f556ee42f31a04df42a2004)
Steve Hay [Sat, 10 Oct 2009 11:05:09 +0000]
Upgrade to CGI.pm-3.48
Steve Hay [Sat, 10 Oct 2009 10:55:42 +0000]
Replace UU encoded files in CGI with their binary originals
There is no longer any need to avoid having binary files in the perl
distribution, and these files are not UU encoded in CGI on CPAN.
Steve Hay [Sat, 10 Oct 2009 10:50:41 +0000]
Move CGI's Changes file to its proper place
Jesse Vincent [Sat, 10 Oct 2009 20:48:38 +0000]
Applied a patch from David Fifield to fix an error message in perlipc.pod
Subject: Comment doesn't match code in perlipc.pod.
Date: Thu, 30 Jul 2009 07:31:48 -0600
To: perlbug@perl.org
From: David Fifield <david@bamsoftware.com>
Jesse Vincent [Sat, 10 Oct 2009 20:15:35 +0000]
Added a TODO test for RT#69332 - PerlIO returns undef instead of 0 on EOL
Simon 'corecode' Schubert [Sat, 10 Oct 2009 16:55:26 +0000]
[perl #69686] Fix DragonFly thread lib selection
Hey,
attached patch fixes the thread library detection in DragonFly. All
versions of DragonFly can be used threaded with -pthread. libc_r must
not be used directly.
Please let me know if you have any questions.
Thanks,
simon
Nicholas Clark [Fri, 9 Oct 2009 20:12:16 +0000]
Make _quote_args() return a result, rather than passing it a scalar reference.
This was the only use of scalar references in test.pl, and the only use of \
to create a reference to a scalar. We are now more robust in the face of parser
or runtime bugs.
Nicholas Clark [Fri, 9 Oct 2009 20:03:17 +0000]
Avoid using ++, op= and anon hash constructors in the testing code.
{} could be misparsed, ++ has a lot of internal implementation "magic" that we
don't need, but don't want to trip us up if it isn't working, and op= isn't
necessary when we already rely on the more general $a = $b op $c working.
Nicholas Clark [Fri, 9 Oct 2009 19:21:35 +0000]
Refactoring tests to use test.pl is a TODO.
Nicholas Clark [Fri, 9 Oct 2009 18:24:56 +0000]
Add a test for the bootstrap rules for tests in t/
Nicholas Clark [Fri, 9 Oct 2009 17:18:52 +0000]
Don't use require in comp/fold.t, as require isn't tested yet.
Emit TAP directly.
Nicholas Clark [Fri, 9 Oct 2009 17:16:35 +0000]
Give names to all tests in t/comp/fold.t
Nicholas Clark [Fri, 9 Oct 2009 16:57:12 +0000]
Move the require './test.pl' to the end of t/comp/hints.t
Ideally tests in t/comp wouldn't use require, as require isn't tested yet, but
this test really needs runperl(), and really wants to live in t/comp/hints.t,
so place it at the end, so that any catestrophic failure only fails the last
test. We don't use any other functionality of t/test.pl
This test uses hard-coded test numbers, but I'm not convinced that it would be
correct to re-write it to use an automatically incrementing counter, as that
wouldn't fail in an obvious fashion if some compile-time blocks ran out of
order. What we have *will* fail in an informative fashion if compile time
blocks do not run correctly.
Nicholas Clark [Fri, 9 Oct 2009 16:35:59 +0000]
Don't use require in comp/multiline.t, as require isn't tested yet.
Emit TAP directly.
Nicholas Clark [Fri, 9 Oct 2009 14:07:22 +0000]
Don't use require in comp/opsubs.t, as require isn't tested yet.
Emit TAP directly.
Nicholas Clark [Fri, 9 Oct 2009 12:17:29 +0000]
Don't use require in comp/our.t, as require isn't tested yet.
Emit TAP directly.
Nicholas Clark [Fri, 9 Oct 2009 12:13:55 +0000]
Don't use require in comp/parser.t, as require isn't tested yet.
Emit TAP directly.
Nicholas Clark [Fri, 9 Oct 2009 12:06:07 +0000]
Don't use require in comp/retainedlines.t, as require isn't tested yet.
Emit TAP directly.
Nicholas Clark [Fri, 9 Oct 2009 11:54:30 +0000]
Avoid relying on prototypes working for tests to pass. They aren't tested yet.
Nicholas Clark [Fri, 9 Oct 2009 11:48:43 +0000]
Don't use require in comp/uproto.t, as require isn't tested yet.
Emit TAP directly.
Nicholas Clark [Fri, 9 Oct 2009 11:44:10 +0000]
In opt(), use is(..., undef) rather than ok(!defined ...)
Nicholas Clark [Fri, 9 Oct 2009 10:54:29 +0000]
Move the test for require 5.11.0 not loading strictures to require.t from use.t
Nicholas Clark [Fri, 9 Oct 2009 10:49:05 +0000]
Don't use require in comp/utf.t, as require isn't tested yet.
So emit TAP directly, rather than utilising test.pl. Like test.pl, avoid using
++, as it has complexity, and that complexity isn't tested yet.
Jesse Vincent [Fri, 9 Oct 2009 16:38:48 +0000]
Record that Ask and Steve Hay have volunteered to be releng victims
Steve Hay [Fri, 9 Oct 2009 11:44:11 +0000]
Add missing IO-Compress test file
The original IO-Compress patch:
http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2009-03/msg00293.html
omitted the file (but strangely included the entry "t/cz-03zlib-v1.t*" [sic]
in the MANIFEST file that it mistakenly included).
Also note in Maintainers.pl that IO-Compress is now in cpan/ not dist/,
and mark UPSTREAM as 'cpan'.
Nicholas Clark [Fri, 9 Oct 2009 09:03:41 +0000]
Use require.t's bytes_to_utf() in place of PerlIO layers in utf.t
This avoids it needing to load Config, and means it can by run with miniperl,
and PerlIO-disabled perls.
Nicholas Clark [Fri, 9 Oct 2009 08:52:43 +0000]
Print the encoding name as part of the test, rather than on a separate line.
Nicholas Clark [Fri, 9 Oct 2009 08:48:57 +0000]
Refactor bytes_to_utf16() into a more generic routine that also handles UTF-8
Remove the direct code for testing UTF-8, calling bytes_to_utf() from a loop for
all 3 tested encodings.
Nicholas Clark [Fri, 9 Oct 2009 08:18:37 +0000]
Replace longhand invocations of test() with 3 nested loops.
Nicholas Clark [Fri, 9 Oct 2009 08:16:15 +0000]
Test utf8 with BOMs, like we already test utf16be and utf16le.
Nicholas Clark [Thu, 8 Oct 2009 19:58:17 +0000]
Move tests for use for "new style version numbers" to use.t from require.t
Jesse Vincent [Fri, 9 Oct 2009 04:13:06 +0000]
Slightly clean up the release manager guide by specifying an "End here for SNAPSHOT" per DAPM
Jesse Vincent [Fri, 9 Oct 2009 04:03:37 +0000]
Document that blead is released by a member of the sucker-of-the-month club.
Jesse Vincent [Fri, 9 Oct 2009 03:57:46 +0000]
Update the release manager guide to clean up the tagging instructions
dapm++ pointed out that I'd duplicated the "create a tag" instructions
while doing 5.11.0. Because of dmq's new tag-based releng
infrastructure, the tag step needed to move earlier.
Craig A. Berry [Thu, 8 Oct 2009 23:49:04 +0000]
MakeMaker testing in core runs from one level deeper than before.
So when we set up a dummy root for the tests on VMS, we need to
make it two levels above current rather than one in order to
prevent a lot of test failures that say "PERL_CORE is set but
I can't find your PERL_SRC!"
Nicholas Clark [Thu, 8 Oct 2009 19:05:34 +0000]
Move &do_require to the top of require.t, so that @a is the first lexical.
The relevant line, with comment, is:
my @a; # magic guard for scope violations (must be first lexical in file)
Nicholas Clark [Thu, 8 Oct 2009 18:30:08 +0000]
Move the test for RT #49472 to op/attrs.t from comp/require.t
Rafael Garcia-Suarez [Thu, 8 Oct 2009 18:11:41 +0000]
Disable strictures while setting $VERSION in a "package" statement
Rafael Garcia-Suarez [Thu, 8 Oct 2009 13:13:18 +0000]
Merge branch 'feature/package-name-version' into blead
Rafael Garcia-Suarez [Thu, 8 Oct 2009 13:12:11 +0000]
Documentation typo
Rafael Garcia-Suarez [Thu, 8 Oct 2009 12:56:56 +0000]
Simplify code that sets $VERSION on the "package" line
Nicholas Clark [Thu, 8 Oct 2009 09:10:30 +0000]
Avoid using bytes in require.t, as pack "C0U" does what we need.
Nicholas Clark [Thu, 8 Oct 2009 08:51:36 +0000]
Avoid using the strict pragma in retainedlines.t - use may not work yet.
Nicholas Clark [Thu, 8 Oct 2009 08:47:00 +0000]
Avoid using the strict pragma in colon.t - use may not work yet.
Nicholas Clark [Thu, 8 Oct 2009 08:26:01 +0000]
Avoid using pragmata in fold.t - use may not work yet.
Nicholas Clark [Thu, 8 Oct 2009 08:21:42 +0000]
Avoid using pragmata in opsubs.t - use may not work yet.
Nicholas Clark [Thu, 8 Oct 2009 08:18:31 +0000]
Avoid using the warnings pragma in proto.t - use may not work yet.
Rafael Garcia-Suarez [Thu, 8 Oct 2009 12:31:27 +0000]
Restore MAD handling of package statements
Since the version seems unused by MAD in "use", do the same
for "package"...
Rafael Garcia-Suarez [Thu, 8 Oct 2009 10:13:38 +0000]
Let tell() report warnings on unopened filehandles
(fixes a bug introduced by previous patch)
Rafael Garcia-Suarez [Thu, 8 Oct 2009 09:44:21 +0000]
Make tell() fail properly if called without an argument and when no previous file was read
This makes tell() return -1, and sets errno to EBADF, thus
restoring the 5.8.x behaviour
Rafael Garcia-Suarez [Thu, 8 Oct 2009 09:33:06 +0000]
Properly return a syntax error instead of segfaulting if each/keys/values is used without an argument
Chris Williams [Thu, 8 Oct 2009 08:52:51 +0000]
Updated Object-Accessor to CPAN version 0.36
Changes for 0.36 Thu Oct 8 09:42:36 BST 2009
=================================================
* Apply patch to fix ABSTRACT in core, RT #49563
from Jerry Hedden.
Nicholas Clark [Thu, 8 Oct 2009 06:44:05 +0000]
Move script.t from t/comp to t/run, as it's a test for invoking perl.
Chris Williams [Wed, 7 Oct 2009 21:15:53 +0000]
CPAN::YACSmoke has been deprecated and minismokebox is a much more robust CPAN testing framework. Updated the links accordingly.
Nicholas Clark [Wed, 7 Oct 2009 18:16:11 +0000]
Add Porting/release_schedule.pod to MANIFEST.
Nicholas Clark [Wed, 7 Oct 2009 18:15:34 +0000]
Fix Pod errors spotted by podcheck.t
Nicholas Clark [Wed, 7 Oct 2009 19:19:21 +0000]
Makefile and makefile only exist on case-sensitive file systems, so allow them.
Max Maischein [Tue, 6 Oct 2009 16:10:42 +0000]
Remove BEGIN{}, use '..', part deux
Rafael Garcia-Suarez [Tue, 6 Oct 2009 21:01:35 +0000]
Add tests for syntax errors in "package Name VERSION"
David Golden [Tue, 6 Oct 2009 20:02:53 +0000]
Expand on cookbook todo
David Golden [Tue, 6 Oct 2009 18:13:31 +0000]
Add perltodo: write an XS cookbook
Jesse Vincent [Tue, 6 Oct 2009 17:33:32 +0000]
Porting/checkAUTHORS.pl now runs clean
Jesse Vincent [Tue, 6 Oct 2009 17:06:12 +0000]
Further clean up checkAUTHORS.pl output (fixing encoded @ signs)
David Golden [Tue, 6 Oct 2009 10:48:48 +0000]
Add 'package NAME VERSION' syntax
This patch adds support for setting the $VERSION of a namespace
when the namespace is declared with 'package'. It eliminates the
need for 'our $VERSION = ...' and similar constructs. E.g.
package Foo::Bar 1.23;
# $Foo::Bar::VERSION == 1.23
There are several advantages to this:
* VERSION is parsed in *exactly* the same way as 'use NAME VERSION'
* $VERSION is set at compile time
* Eliminates '$VERSION = ...' and 'eval $VERSION' clutter
* As it requires VERSION to be a numeric literal or v-string
literal, it can be statically parsed by toolchain modules
without 'eval' the way MM->parse_version does for '$VERSION = ...'
* Alpha versions with underscores do not need to be quoted; static
parsing will preserve the underscore, but during compilation, Perl
will remove underscores as it does for all numeric literals
During development of this, there was discussion on #corehackers and
elsewhere that this should also allow other metadata to be set such as
"status" (stable/alpha) or "author/authority". On reflection, those
metadata are not very well defined yet and likely should never be
encoded into Perl core parsing so they can be freely changed in the
future. (They could perhaps be achieved via a comment on the same line
as 'package NAME VERSION'.)
Version numbers, however, already have a very specific definition and
use defined in the core through 'use NAME VERSION'. This patch merely
provides appropriate symmetry for setting $VERSION with the exact same
parsing and semantics as 'use'.
It does not break old code with only 'package NAME', but code that
uses 'package NAME VERSION' will need to be restricted to perl 5.11.X.
This is analogous to the change to open() from two-args to three-args.
Users requiring the latest Perl will benefit, and perhaps N years from
now it will become standard practice when Perl 5.12 is targeted the
way that 5.6 is today.
The patch does not prevent 'package NAME VERSION' from being used
multiple times for the same package with different version numbers, but
nothing prevents $VERSION from being modified arbitrarily at runtime,
either, so I see no urgen reason to add limitations or warnings so
long as Perl uses a global $VERSION variable for package version
numbers.
I am posting this patch to the p5p list for discussion and review. If
there seems to be general assent (or lack of dissent), I will go ahead
and commit the patch to blead.
Nicholas Clark [Tue, 6 Oct 2009 14:58:31 +0000]
sort @files once, outside the loop.
Nicholas Clark [Tue, 6 Oct 2009 14:26:32 +0000]
Standardise t/lib/*.t on ./test.pl, and remove BEGIN boilerplate.
Nicholas Clark [Tue, 6 Oct 2009 14:26:18 +0000]
Remove commented out reference to Test::More
Nicholas Clark [Tue, 6 Oct 2009 14:09:00 +0000]
Standarise t/porting/*.t on ./test.pl, and remove BEGIN boilerplate.
Nicholas Clark [Tue, 6 Oct 2009 12:43:55 +0000]
Replace a hardcoded temporary file name with test.pl's tempfile().
Nicholas Clark [Tue, 6 Oct 2009 12:05:20 +0000]
Standardise t/uni/*.t on ./test.pl, and remove PERL_CORE boilerplate.
TestInit sets up the directory for us.
Also remove unncessary C<use Encode>s.
Nicholas Clark [Tue, 6 Oct 2009 07:24:08 +0000]
Don't attempt UTF-8 cache assertion for SVs with invalid SvPVX() (eg overloaded)
Fixes RT 69422.
However, I'm not actually sure whether we should even be caching the results of
UTF-8 operations on overloading, given that nothing stops overloading returning
a different value every time it's called.
Jesse Vincent [Tue, 6 Oct 2009 03:56:43 +0000]
more pod cleanups based on the new podcheck.t
Jesse Vincent [Tue, 6 Oct 2009 03:42:38 +0000]
A number of pod fixes found by podcheck.t
Jesse Vincent [Tue, 6 Oct 2009 03:56:56 +0000]
podcheck.t now uses MANIFEST to choose which files it should check
Jesse Vincent [Tue, 6 Oct 2009 01:42:14 +0000]
We don't actually want to check .PL files
Max Maischein [Mon, 5 Oct 2009 20:49:09 +0000]
Check POD in lib/, ext/ and pod/
Alex Vandiver [Mon, 5 Oct 2009 23:45:58 +0000]
Note the one mistake in perl.git's history, and the appropriate graft to remove it
Message-Id: <
1254775127-18136-1-git-send-email-alex@chmrr.net>
Eric Brine [Wed, 23 Sep 2009 23:20:52 +0000]
Adding ikegami to AUTHORS
Message-ID: <
f86994700910051044p6ef5e09dpf0f058714c2d1e6@mail.gmail.com>
David Golden [Mon, 5 Oct 2009 21:46:36 +0000]
Explain using git send-email for patches
David Golden [Mon, 5 Oct 2009 15:31:12 +0000]
Update ExtUtils::ParseXS to 2.21
2.21 - Mon Oct 5 11:17:53 EDT 2009
Bug fixes:
- Adds full path in INCLUDE #line directives (RT#50198) [patch by "spb"]
Other:
- Updated copyright and maintainer list
2.20_07 - Sat Oct 3 11:26:55 EDT 2009
Bug fixes:
- Use "char* file" for perl < 5.9, not "char[] file"; fixes mod_perl
breakage due to prior attempts to fix RT#48104 [David Golden]
2.20_06 - Fri Oct 2 23:45:45 EDT 2009
Bug fixes:
- Added t/typemap to fix broken test on perl 5.6.2 [David Golden]
- More prototype fixes for older perls [Goro Fuji]
- Avoid "const char *" in test files as it breaks on 5.6.2 [Goro Fuji]
Other:
- Merged changes from 2.2004 maintenance branch (see 2.200401 to 2.200403)
[David Golden]
2.20_05 - Sat Aug 22 21:46:56 EDT 2009
Bug fixes:
- Fix prototype related bugs [Goro Fuji]
- Fix the SCOPE keyword [Goro Fuji]
Nicholas Clark [Mon, 5 Oct 2009 19:04:13 +0000]
In Perl_moreswitches(), merge 2 string constants in the code implementing -v.
Nicholas Clark [Mon, 5 Oct 2009 18:48:10 +0000]
$^O is initalised to OSNAME, so no need to return the latter from Internals::V.
Saves having object code to build one SV that Config::_V can find out by itself.
Nicholas Clark [Mon, 5 Oct 2009 18:20:49 +0000]
Move initialising PL_osname from S_init_predump_symbols to perl_construct().
Jesse Vincent [Mon, 5 Oct 2009 19:05:57 +0000]
Merge branch 'blead' of ssh://perl5.git.perl.org/gitroot/perl into blead
* 'blead' of ssh://perl5.git.perl.org/gitroot/perl:
Remove :raw open mode from tests
Jesse Vincent [Mon, 5 Oct 2009 19:03:53 +0000]
Adding the current stub of a release schedule for blead to Porting/
Max Maischein [Mon, 5 Oct 2009 17:03:19 +0000]
Remove :raw open mode from tests
Message-ID: <
4ACA2753.4080100@corion.net>
Rafael Garcia-Suarez [Mon, 5 Oct 2009 11:53:00 +0000]
Upgrade File::Path to 2.08 (and add taint.t test)
Yves Orton [Mon, 5 Oct 2009 07:34:52 +0000]
in regexec.c move the BOUND logic out of the way of the special CC logic
This is a first step towards macroizing the special CC handler logic so
it is easier to maintain them, for instance interestng optimisations are
being used in one, but not all, even though the logic is sharable. By
moving the BOUND logic out of the way the code repition is much clearer.
Yves Orton [Sun, 4 Oct 2009 11:19:59 +0000]
add tests to make sure the \s and [\s] match the same thing
Note: we currently fail these tests. This will be recitified.
Steve Hay [Mon, 5 Oct 2009 07:54:49 +0000]
Win32API-File is maintained by CHORNY
Message-ID: <
99f9741ee79af34e132fdb7538318cf2.squirrel@mail.corion.net>
Steve Hay [Sun, 4 Oct 2009 23:43:28 +0000]
Win32API-File has now moved to cpan/
and its build by-product is now ignored by the cpan/.gitignore
Max Maischein [Sun, 4 Oct 2009 17:45:41 +0000]
Ignore cpan/Win32API-File/cFile_pc_to_blib build by-product
Message-ID: <
4AC8EACC.70802@corion.net>
Yves Orton [Sun, 4 Oct 2009 15:00:10 +0000]
refactor some common logic in regexec.c
Yves Orton [Sun, 4 Oct 2009 16:39:49 +0000]
make test-reonly bypass the non-xs extensions
Rafael Garcia-Suarez [Sun, 4 Oct 2009 16:11:13 +0000]
Run "cd pod ; ../perl -I../lib buildtoc --build-all"
Rafael Garcia-Suarez [Sun, 4 Oct 2009 16:09:14 +0000]
Don't autovivify a spurious key "all" in the %Targets hash
Vincent Pit [Sun, 4 Oct 2009 13:02:56 +0000]
Apply the same policy for the value returned by push() and unshift()
That is, only push the len when the static context is not void, and honour
len magic.
Jesse Vincent [Sat, 3 Oct 2009 21:43:19 +0000]
Fix pod toc generation for new perldelta
Spotted by Jerry Hedden
Jesse Vincent [Sat, 3 Oct 2009 21:18:19 +0000]
'make distclean now results in an actually-clean tree.