summaryrefslogtreecommitdiff
path: root/t/comp/require.t
Commit message (Collapse)AuthorAgeFilesLines
* Make ‘require func()’ work with .pm abs pathv5.14.0-RC3Father Chrysostomos2011-05-111-1/+15
| | | | | | | | | | | | | | | | | | | | | | | | | As of commit 282b29ee485, pp_requires passes an SV to S_doopen_pm, instead of char*/length pair. That commit also used sv_mortalcopy() to copy the sv when trying out a .pmc extension: + SV *const pmcsv = sv_mortalcopy(name); When the path is absolute, the sv passed to S_doopen_pm is the very sv that was passed to require. If it was returned from a (non-lvalue) sub-routine, it will be marked TEMP, so the buffer gets stolen. After the .pmc file is discovered to be nonexistent, S_doopen_pm then uses its original sv to open the .pm file. But the buffer has been stolen, so it’s trying to open undef, which fais. In the mean time, pp_require still has a pointer to the stolen buffer, which now has a .pmc extenion, it blithely reports that the .pmc file cannot be found, not realising that its string has changed out from under it. (Actually, if the file name were just the right length, it could be reallocated and we could end up with a crash.) This patch copies the sv more kindly.
* Make BEGIN {require 5.12.0} behave as documented.Nicholas Clark2010-11-251-1/+4
| | | | | | Previously in a BEGIN block, require was behaving identically to use 5.12.0 - ie erroneously executing the use feature ':5.12.0'; and use strict; use warnings behaviour, which only use was documented to provide.
* Fix -DPERL_NO_UTF16_FILTEREric Brine2009-11-301-3/+6
|
* Force OP_REQUIRE to scalar context at the end of ck_require and don't let it ↵Gerard Goossen2009-11-211-2/+1
| | | | become void context. Fixes problem with require not always being in scalar context.
* Add a TODO test for "require" always being in scalar context.Gerard Goossen2009-11-211-2/+4
|
* Move the test for require 5.11.0 not loading strictures to require.t from use.tNicholas Clark2009-10-091-1/+7
|
* Print the encoding name as part of the test, rather than on a separate line.Nicholas Clark2009-10-091-3/+1
|
* Refactor bytes_to_utf16() into a more generic routine that also handles UTF-8Nicholas Clark2009-10-091-8/+15
| | | | | Remove the direct code for testing UTF-8, calling bytes_to_utf() from a loop for all 3 tested encodings.
* Move tests for use for "new style version numbers" to use.t from require.tNicholas Clark2009-10-091-9/+1
|
* Move &do_require to the top of require.t, so that @a is the first lexical.Nicholas Clark2009-10-081-7/+7
| | | | | | The relevant line, with comment, is: my @a; # magic guard for scope violations (must be first lexical in file)
* Move the test for RT #49472 to op/attrs.t from comp/require.tNicholas Clark2009-10-081-15/+1
|
* Avoid using bytes in require.t, as pack "C0U" does what we need.Nicholas Clark2009-10-081-2/+1
|
* Mark all .t and .pm files as non executableRafael Garcia-Suarez2009-06-061-0/+0
|
* [perl #49472] Attributes + Unkown ErrorDave Mitchell2008-02-091-1/+15
| | | | | | | An errored attribute sub still processes the attributes, which require's attribute.pm, so make sure the error state is passed to the new require p4raw-id: //depot/perl@33265
* Tests for the .pmc functionality.Nicholas Clark2007-10-091-4/+63
| | | p4raw-id: //depot/perl@32084
* do $file; won't propagate errors from die, as do is an implicit eval.Nicholas Clark2007-01-081-2/+2
| | | | | So need to propagate errors with $@. p4raw-id: //depot/perl@29723
* require should ignore directories found when searching @INC not justGisle Aas2006-03-161-1/+1
| | | | | | | | | die as soon as it finds one. It should for instance be possible to for require "File" to read the file "./File" even if there happens to be a "File" directory in perl's standard library. This fixes the RT #24404 fix in change 26373. p4raw-id: //depot/perl@27515
* Explain better how that test count works.Rafael Garcia-Suarez2006-01-181-3/+4
| | | p4raw-id: //depot/perl@26892
* New t/comp/require.t tests should go before the conditional exit.Nicholas Clark2006-01-181-9/+10
| | | p4raw-id: //depot/perl@26891
* Regression test for change #26881Rafael Garcia-Suarez2006-01-171-1/+10
| | | | | p4raw-link: @26881 on //depot/perl: ae706db49f17350f7e2ed5eccdc792223f4ea020 p4raw-id: //depot/perl@26883
* Don't code the absolute number of tests for the UTF8/EBCDIC case; muchNicholas Clark2006-01-061-1/+1
| | | | | better to subtract the number of tests that don't get run. p4raw-id: //depot/perl@26691
* comp/require.t exits early for the case of UTF-8 or EBCDIC, so need toNicholas Clark2005-12-161-11/+14
| | | | | add "new" tests before the end. p4raw-id: //depot/perl@26377
* Added test for change #26373.Steve Peters2005-12-151-2/+13
| | | | | p4raw-link: @26373 on //depot/perl: ce8abf5f5d2e5b19646ab17c24a3ea87c70428c8 p4raw-id: //depot/perl@26375
* Bring bleadperl up to version.pmJohn Peacock2005-06-131-1/+1
| | | | | Message-ID: <42A414DD.8090504@rowman.com> p4raw-id: //depot/perl@24823
* Revert change 23843.Rafael Garcia-Suarez2005-01-241-10/+8
| | | | | (See discussion for bug [perl #31924]) p4raw-id: //depot/perl@23873
* Re: [perl #31924] %INC caching failure-case problemRick Delaney2005-01-211-8/+10
| | | | | Message-ID: <20041013164018.GA32174@biff.bort.ca> p4raw-id: //depot/perl@23843
* Final version object core patch?John Peacock2004-08-041-1/+1
| | | | | Message-ID: <411048BD.3080700@rowman.com> p4raw-id: //depot/perl@23190
* Re: require patch breaks localeRick Delaney2003-10-091-1/+1
| | | | | Message-Id: <20031008224155.A14638@biff.bort.ca> p4raw-id: //depot/perl@21427
* (was Re: require() does not behave aas documented)Rick Delaney2003-10-061-2/+38
| | | | | Message-ID: <20030923121452.G18845@biff.bort.ca> p4raw-id: //depot/perl@21415
* Fix test count, by Abe Timmerman.Rafael Garcia-Suarez2003-06-281-1/+1
| | | p4raw-id: //depot/perl@19869
* Fix [perl #21742] :Rafael Garcia-Suarez2003-06-251-3/+3
| | | | | | require() should always be called in scalar context, even when it's the last statement in an eval(""). p4raw-id: //depot/perl@19851
* Revert change #19126, a poor attempt at fixing bug #21742.Marcus Holland-Moritz2003-06-161-1/+2
| | | | | | | | | | | The test for #21742 is marked as TODO. Plus new regression tests from : Subject: [perl #22708] void context in string eval is broken From: "Marcus Holland-Moritz" (via RT) <perlbug-followup@perl.org> Message-ID: <rt-22708-59432.14.6755501393177@rt.perl.org> p4raw-link: @19126 on //depot/perl: a89be09a10c36299e755a956d356eb7f1f643437 p4raw-id: //depot/perl@19801
* Fix bug #21742. require should be always invoked inRafael Garcia-Suarez2003-04-011-2/+18
| | | | | | | | | scalar context. This wasn't the case when called from an eval(""), because the void context doesn't propagate through the leaveeval op. Instead of making scalarvoid() handle OP_LEAVEEVAL -- this breaks AutoLoader -- implement a workaround in doeval(). p4raw-id: //depot/perl@19126
* If expecting UTF-8, probably not expecting UTF-16.Jarkko Hietaniemi2002-03-281-3/+4
| | | p4raw-id: //depot/perl@15584
* cleaner close on tests, take 2 Andreas König2001-12-291-1/+1
| | | | | | | Message-ID: <m33d1tvjuq.fsf@anima.de> (except for the three DB_File patch fragments) p4raw-id: //depot/perl@13940
* Drop all the unnecessary "use utf8" clauses and some ofJarkko Hietaniemi2001-08-121-1/+0
| | | | | | | | | | | the unnecessary "use bytes" ones. TODO: scour the documentation for unnecessary "use utf8" and prominently display it in perldelta when the time comes. ("use utf8" should be necessary ONLY if one wants the script to be in UTF-8.) Also should be checked in some non-ASCII non-Latin-1 platform, like EBCDIC. p4raw-id: //depot/perl@11638
* more tests (was Re: Perl5.7.* Unicode/EBCDIC status.)Peter Prymmer2001-03-301-2/+9
| | | | | Message-ID: <Pine.OSF.4.10.10103291731150.1326-100000@aspara.forte.com> p4raw-id: //depot/perl@9461
* Make print, syswrite, send, readline, getc honour utf8-ness of PerlIO.Nick Ing-Simmons2000-12-091-1/+2
| | | | | | | | | | | | | | | (sysread, recv and write i.e. formats still to do...) Allow :utf8 or :bytes in PerlIO_apply_layers() so that open($fh,">:utf8","name") etc. work. - "applying" those just sets/clears the UTF8 bit of the top layer, so no extra overhead is involved. Tweak t/comp/require.t to add a 'use bytes' to permit its dubious writing of BOM to a non-utf8 stream. Add initial io/utf8.t Fix SvPVutf8() - sv_2pv() was not expecting to be called with something that was already SvPOK() - (we just fossiked with SvUTF8 bit). Fix that and also just use the SvPV macro in sv_2pvutf8() to avoid the issue/overhead. p4raw-id: //depot/perlio@8054
* Use minimal @INC in tests, most of the time just '../lib',Mike Guy2000-08-291-1/+2
| | | | | | | | so that we simply can't pick up stuff from other Perls than the one we are testing. Pointed out by Subject: Re: [PATCH: 6757] make new Storable tests forgiving of places where not built Message-Id: <E13SKH1-00031D-00@virgo.cus.cam.ac.uk> p4raw-id: //depot/perl@6874
* require.t needs binmode() to work on windowsGurusamy Sarathy2000-08-021-0/+1
| | | p4raw-id: //depot/perl@6497
* The swallow_bom() saga continues. The #23 of require.tJarkko Hietaniemi2000-07-311-9/+10
| | | | | | | | (UTF16-LE) still fails (silently, no output) but the #22 (UTF16-BE) seems to be working now. The root of the failure may be in sv_gets(): is it UTF-16LE-aware, especially when it comes to line endings? p4raw-id: //depot/perl@6469
* Get UTF16 BOMs working. Patch fromM. J. T. Guy2000-07-251-1/+2
| | | | | | | | | | | | | | Subject: Re: [ID 20000719.001] Problem with bleadperl of 7/18/00 Date: Tue, 25 Jul 2000 12:52:45 +0100 Message-Id: <E13H3GP-0004MR-00@libra.cus.cam.ac.uk> and notes from Subject: Re: [ID 20000719.001] Problem with bleadperl of 7/18/00 From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk> Date: Tue, 25 Jul 2000 11:43:25 +0100 Message-Id: <E13H2BJ-0002nG-00@libra.cus.cam.ac.uk> p4raw-id: //depot/perl@6435
* integrate cfgperl changes#6261..6266 into mainlineGurusamy Sarathy2000-07-111-1/+11
| | | | | | | | | | | | | | | | p4raw-link: @6266 on //depot/cfgperl: a009ce76c9b4ddbde44a58eab3fe27d331cf27fe p4raw-link: @6261 on //depot/cfgperl: 27d76ecff97d0a9449f569d789504cc8b69a6d01 p4raw-id: //depot/perl@6363 p4raw-integrated: from //depot/cfgperl@6362 'copy in' README.epoc epoc/createpkg.pl epoc/epocish.c (@5586..) epoc/epocish.h t/comp/require.t (@5639..) cygwin/Makefile.SHs (@6096..) ext/POSIX/POSIX.pm (@6140..) hints/bsdos.sh (@6156..) epoc/config.sh (@6168..) ext/POSIX/POSIX.xs (@6198..) p4raw-integrated: from //depot/cfgperl@6265 'copy in' ext/POSIX/POSIX.pod (@5586..) p4raw-integrated: from //depot/cfgperl@6263 'copy in' doop.c (@6256..) p4raw-integrated: from //depot/cfgperl@6261 'merge in' pod/perldiag.pod (@6206..) toke.c (@6250..)
* do FILE should not see outside lexicals (from Rick DelaneyGurusamy Sarathy2000-03-081-2/+13
| | | | | <rick@consumercontact.com>) p4raw-id: //depot/perl@5620
* per Larry's idea, parse 1.2.3 as v1.2.3; C<require 5.6.0> andGurusamy Sarathy2000-02-231-3/+3
| | | | | C<use 5.6.0> work as well; underscores are now permitted in v-strings p4raw-id: //depot/perl@5220
* adjust for lost fp precision in require version checkGurusamy Sarathy2000-02-221-5/+5
| | | p4raw-id: //depot/perl@5190
* remove dual-valueness of v-strings (i.e., they are pure stringsGurusamy Sarathy2000-02-211-10/+10
| | | | | | | | now); avoid the word "tuple" to describe strings represented as character ordinals; usurp $PERL_VERSION for $^V as suggested by Larry, deprecate $] ; adjust the documentation and testsuite accordingly p4raw-id: //depot/perl@5186
* longstanding bug in parsing "require VERSION", could reallocateGurusamy Sarathy2000-02-101-1/+19
| | | | | | | | current line and not know it; exposed by change#5004; manifested as parse failure of C<{require 5.003}> p4raw-link: @5004 on //depot/perl: 18b095192e336ba31465f4d3dab1ecc90871c3a9 p4raw-id: //depot/perl@5061
* support for v5.5.640 style version numbersGurusamy Sarathy1999-12-241-1/+51
| | | p4raw-id: //depot/utfperl@4705
* applied suggested patch, modulo superseded partsCharles Bailey1999-03-241-1/+1
| | | | | | Message-id: <01J8YFGIHW2W001E7S@mail.newman.upenn.edu> Subject: [PATCH 5.005_56] Miscellaneous VMS-specific fixes p4raw-id: //depot/perl@3153