summaryrefslogtreecommitdiff
path: root/t/op
Commit message (Collapse)AuthorAgeFilesLines
* $#a>>=1 relies on malloc wrap to avoid the segfault, so need toNicholas Clark2004-12-211-2/+6
| | | | | skip the test on platforms where it's not available p4raw-id: //depot/perl@23666
* bop.t follow-up to #23645Craig A. Berry2004-12-161-1/+1
| | | | | | From: "Craig A. Berry" <craigberry@mac.com> Message-ID: <41C1A16C.9040700@mac.com> p4raw-id: //depot/perl@23660
* Fix test added in change 23645 with an eval()Rafael Garcia-Suarez2004-12-141-1/+1
| | | p4raw-id: //depot/perl@23646
* Test patch for already-solved bug #33003,Rafael Garcia-Suarez2004-12-141-1/+5
| | | | | by Michael G Schwern. p4raw-id: //depot/perl@23645
* t/op/taint.t follow-up to #23635Craig A. Berry2004-12-131-1/+1
| | | | | | From: "Craig A. Berry" <craigberry@mac.com> Message-ID: <41BB287D.6090001@mac.com> p4raw-id: //depot/perl@23641
* Test rt.perl.org 5900Michael G. Schwern2004-12-101-1/+22
| | | | | Message-ID: <20041210031159.GA7629@windhund.schwern.org> p4raw-id: //depot/perl@23636
* [PATCH] cleanup t/op/taint.tMichael G. Schwern2004-12-101-427/+413
| | | | | | | | | | | Date: Fri, 10 Dec 2004 02:04:49 -0500 Message-ID: <20041210070448.GA22347@windhund.schwern.org> Subject: [PATCH] Add todo_skip() to test.pl From: Michael G Schwern <schwern@pobox.com> Date: Fri, 10 Dec 2004 04:27:06 -0500 Message-ID: <20041210092706.GA23378@windhund.schwern.org> p4raw-id: //depot/perl@23635
* $foo::_ was wrongly forced as $main::_.Rafael Garcia-Suarez2004-12-031-1/+10
| | | | | | | Since we still want "our $_" to be always forced to $main::_, deplace the forcing code at our-pad allocation time. (Making execution probably a tiny bit faster) p4raw-id: //depot/perl@23608
* [perl #32717] BeOS specific Updates Ingo Weinhold2004-12-011-0/+3
| | | | | | From: Ingo Weinhold (via RT) <perlbug-followup@perl.org> Message-ID: <rt-3.0.11-32717-101307.19.7097750538509@perl.org> p4raw-id: //depot/perl@23584
* Make "err" a weak keyword;Rafael Garcia-Suarez2004-11-191-1/+13
| | | | | | that is, it will be overriden by any sub named "err", except when really an operator is expected at this point. ([perl #32347]) p4raw-id: //depot/perl@23519
* Allow more tries for t/op/time.t test 2.Andy Dougherty2004-11-171-3/+3
| | | | | Message-ID: <Pine.SOL.4.58.0411161149170.5639@maxwell.phys.lafayette.edu> p4raw-id: //depot/perl@23505
* [perl #3038] Re: $qr = qr/^a$/m; $x =~ $qr; failsRick Delaney2004-11-042-1/+12
| | | | | Message-ID: <20041101034040.GC1232@biff.bort.ca> p4raw-id: //depot/perl@23471
* [perl #32039] Chained goto &sub drops data too early.Dave Mitchell2004-10-231-1/+9
| | | | | | | Change 22373 to stop a memory leak in goto &foo intead caused the elements of @_ to be freed too early. This revised fix just transfers the reifiedness of the old @_ to the new @_ p4raw-id: //depot/perl@23418
* PATCH: Taintedness and ternary conditionalAndy Lester2004-09-011-1/+38
| | | | | | | | | Message-Id: <20040827044447.GA5268@petdance.com> add tests and documentation to the effect that ($tainted ? $a : $b) doesn't necessarily return a tainted value. Also tidy the markup in perldoc.pod p4raw-id: //depot/perl@23253
* a regex in STDOUT destructor coredumped because regex pad alreadyDave Mitchell2004-08-201-1/+14
| | | | | freed p4raw-id: //depot/perl@23230
* make pp_goto() cope potential stack reallocation in EXTENDDave Mitchell2004-08-141-1/+16
| | | | | | The code for goto &foo had local pointers to the stack that pointed to the wrong place after a realloc. p4raw-id: //depot/perl@23217
* Re: 2 patches: goto.t, B.pm/xsJim Cromie2004-08-101-21/+124
| | | | | Message-ID: <4118CDA4.3060700@divsol.com> p4raw-id: //depot/perl@23213
* Patch for t/op/sleep.tAndy Lester2004-08-091-4/+11
| | | | | Message-ID: <20040809051151.GA13872@petdance.com> p4raw-id: //depot/perl@23206
* Final version object core patch?John Peacock2004-08-041-1/+1
| | | | | Message-ID: <411048BD.3080700@rowman.com> p4raw-id: //depot/perl@23190
* Re: more 5.9 sort tests (second draft)david nicol2004-07-281-2/+11
| | | | | Message-Id: <1090447805.995.24.camel@plaza.davidnicol.com> p4raw-id: //depot/perl@23166
* [perl #30733] memory leak in array deleteDave Mitchell2004-07-231-1/+14
| | | | | av_delete() wasn't mortalizing the returned value p4raw-id: //depot/perl@23158
* Re: [perl #30688] Empty slice arg with ($;$) prototypeRick Delaney2004-07-211-1/+10
| | | | | Message-ID: <20040720205353.GA970@biff.bort.ca> p4raw-id: //depot/perl@23145
* check that reverse (sort (@a), @b) etc work.Nicholas Clark2004-07-131-7/+10
| | | | | Join some lines that don't need wrapping p4raw-id: //depot/perl@23100
* Check that non-optimimisable sort comparisons work when reversedNicholas Clark2004-07-131-2/+54
| | | | | (Not optimised yet, but might be coming soon) p4raw-id: //depot/perl@23099
* Test reverse sort as the return from a function in list and scalarNicholas Clark2004-07-131-1/+56
| | | | | contexts. p4raw-id: //depot/perl@23098
* Also test reverse sort in scalar contextNicholas Clark2004-07-131-1/+27
| | | p4raw-id: //depot/perl@23097
* The current optimisation for sort {$b cmp $a} is bogus now that weNicholas Clark2004-07-131-1/+132
| | | | | guarantee a stable sort. Disable it, pending a correct optimisation. p4raw-id: //depot/perl@23093
* Re: [perl #30568] splice generates undef? [PATCH]LAUN Wolfgang2004-07-131-1/+31
| | | | | Message-ID: <DF27CDCBD2581D4B88431901094E4B4D02B0C7D2@attmsx1.aut.alcatel.at> p4raw-id: //depot/perl@23092
* regcomp.c, t/op/regmesg.t -- False range with \p and \PJeff Pinyan2004-06-251-0/+2
| | | | | Message-ID: <Pine.LNX.4.44.0406241636340.8774-200000@perlmonk.org> p4raw-id: //depot/perl@22995
* More @INC test fixesRafael Garcia-Suarez2004-06-251-1/+1
| | | p4raw-id: //depot/perl@22994
* Test that [] // 0 is []Nicholas Clark2004-06-231-3/+7
| | | p4raw-id: //depot/perl@22977
* Add a regression test for bug #23765 (by Jarkko)Rafael Garcia-Suarez2004-06-231-1/+8
| | | p4raw-id: //depot/perl@22976
* Abolish the "Tied variable freed while still in use" error - I haveNicholas Clark2004-06-221-1/+0
| | | | | a way to cleanly avoid the coredump. p4raw-id: //depot/perl@22969
* When expecting an error, it's best to check the text you got, ratherNicholas Clark2004-06-181-2/+4
| | | | | than blindly assuming that it's correct. p4raw-id: //depot/perl@22960
* Remove the "malloc wrappage" tests, due to their unportabilityRafael Garcia-Suarez2004-06-092-60/+2
| | | | | (as suggested by Jarkko.) p4raw-id: //depot/perl@22922
* Re: [PATCH] Re: Lack of error for large string on SolarisJarkko Hietaniemi2004-06-082-3/+93
| | | | | Message-ID: <40C4A156.5030205@iki.fi> p4raw-id: //depot/perl@22904
* Re: [PATCH] [perl #29841] utf8::decode doesn't work under -T SADAHIRO Tomoyuki2004-06-061-3/+116
| | | | | Message-Id: <20040606003344.57B2.BQW10602@nifty.com> p4raw-id: //depot/perl@22902
* Make the dUNDERBAR/UNDERBAR macros work as advertised.Rafael Garcia-Suarez2004-06-021-1/+1
| | | | | | While we're at it, use the same trick to make reverse() work correctly with lexical $_. p4raw-id: //depot/perl@22889
* Re: my $x->{foo} doesn't workShinya Hayakawa2004-05-301-1/+12
| | | | | | | Message-Id: <200405250006.06387.hayakawa@livedoor.jp> Allow autovivification of (my $x)->{foo} p4raw-id: //depot/perl@22874
* [perl #29708] Problem with autouse (causing Perl to crash)Dave Mitchell2004-05-301-1/+14
| | | | | @_ sometimes wasn't getting created right p4raw-id: //depot/perl@22870
* Tests for change #22842, by SADAHIRO TomoyukiRafael Garcia-Suarez2004-05-241-0/+73
| | | | | | (adapted to the core) p4raw-link: @22842 on //depot/perl: f5cee72b6610421c22d816640f267c5b45b0450e p4raw-id: //depot/perl@22843
* [perl #29790] Optimization busted: '@a = "b", sort @a' drops "b"Dave Mitchell2004-05-221-6/+34
| | | | | | Fix the sort-in-place optimization of change #22349. p4raw-link: @22349 on //depot/perl: fe1bc4cf71e7b04d33e679798964a090d9fa7b46 p4raw-id: //depot/perl@22839
* [perl #29340] Bizarre copy of ARRAYDave Mitchell2004-05-041-1/+13
| | | | | | make sure a pad op's flags are updated after optimising away the assignment in my @a = () (see change 22520). p4raw-id: //depot/perl@22781
* Add byte-order group modifiers to (un)pack templates.Marcus Holland-Moritz2004-05-041-3/+71
| | | | | | | | Follow-up on: #22734, #22745, #22753, #22754. Subject: Group modifiers in (un)pack templates Message-Id: <20040503201441.1b058e0d@r2d2> p4raw-id: //depot/perl@22780
* [perl #29127] scalar delete of empty slice returned garbageDave Mitchell2004-05-031-1/+9
| | | p4raw-id: //depot/perl@22775
* [perl #28938] split could leave an array without &PL_sv_undefDave Mitchell2004-05-031-1/+14
| | | | | in the unused elements p4raw-id: //depot/perl@22774
* Fix 29149 - another UTF8 cache bug hit by substr.SADAHIRO Tomoyuki2004-04-291-1/+12
| | | | | | | | | Regression test from: Subject: Re: [perl #29149] substr/UTF8 related problem with perl 5.8.3 on linux Message-Id: <20040429103926.5BA6.BQW10602@nifty.com> Date: Thu, 29 Apr 2004 10:53:17 +0900 p4raw-id: //depot/perl@22755
* candidate for TR18 complianceJeff Pinyan2004-04-271-2/+3
| | | | | | | | | Date: Thu, 22 Apr 2004 14:31:30 -0400 (EDT) Message-ID: <Pine.LNX.4.44.0404221429040.10466-101000@perlmonk.org> Date: Mon, 26 Apr 2004 12:37:21 -0400 (EDT) Message-ID: <Pine.LNX.4.44.0404261222320.7154-400000@perlmonk.org> p4raw-id: //depot/perl@22744
* byte-order modifiers for (un)pack templatesMarcus Holland-Moritz2004-04-231-45/+244
| | | | | Message-Id: <20040421210920.3c467772@r2d2> p4raw-id: //depot/perl@22734
* Re: [perl #28532] optional match of an anchor gets ignored Hugo van der Sanden2004-04-191-2/+8
| | | | | Message-Id: <200404141830.i3EIUko03728@zen.crypt.org> p4raw-id: //depot/perl@22712