| Commit message (Expand) | Author | Age | Files | Lines |
* | Mark all .t and .pm files as non executable | Rafael Garcia-Suarez | 2009-06-06 | 94 | -0/+0 |
* | Assuming that $SIG{PIPE} is not set can be bogus when running in a cron job. | Nicholas Clark | 2009-06-04 | 1 | -1/+1 |
* | Merge branch 'smartmatch' into blead | Rafael Garcia-Suarez | 2009-06-02 | 1 | -2/+10 |
|\ |
|
| * | More ~~ tests | Rafael Garcia-Suarez | 2009-06-01 | 1 | -2/+10 |
* | | Correct test output for t/op/eval.t (missing newline) | Jerry D. Hedden | 2009-06-01 | 1 | -1/+1 |
|/ |
|
* | Silence a warning emitted by test added by last commit | Rafael Garcia-Suarez | 2009-05-31 | 1 | -0/+1 |
* | Add test case from RT#54758. | George Greer | 2009-05-31 | 1 | -1/+5 |
* | Merge branch 'memleaktest' into blead | Rafael Garcia-Suarez | 2009-05-31 | 1 | -3/+13 |
|\ |
|
| * | Add regression test for [RT#63110] | Rafael Garcia-Suarez | 2009-05-31 | 1 | -3/+13 |
* | | Document test structure | Bram | 2009-05-31 | 1 | -0/+10 |
* | | Fix [RT#6266] -- sv_pos_u2b expects to be called with a valid character index | Alex Vandiver | 2009-05-30 | 1 | -1/+16 |
|/ |
|
* | Fix [RT#66098] -- stricter checking on SvIVX exposed a lack of SvIOK check | Alex Vandiver | 2009-05-28 | 1 | -1/+7 |
* | patch@2009-05-25.21:50:08 magic.t leaves $ENV{foo} on VMS. | John E. Malmberg | 2009-05-26 | 1 | -0/+5 |
* | Skip tests that use attributes.pm under miniperl | Rafael Garcia-Suarez | 2009-05-25 | 2 | -2/+10 |
* | Fix test if Fcntl couldn't be loaded (for example with miniperl) | Rafael Garcia-Suarez | 2009-05-25 | 1 | -1/+4 |
* | Avoid using Test::More in given/when tests | Rafael Garcia-Suarez | 2009-05-25 | 1 | -2/+2 |
* | Fix test for overload in given() with smart match after last change | Rafael Garcia-Suarez | 2009-05-25 | 1 | -3/+3 |
* | Allow ~~ overloading on the left side, when the right side is a plain scalar | Rafael Garcia-Suarez | 2009-05-24 | 1 | -5/+15 |
* | In the ~~ implementation, consistently use the SV-aware API for hash keys. | Rafael Garcia-Suarez | 2009-05-24 | 1 | -0/+9 |
* | TODO must be on same line as message for TAP. | Craig A. Berry | 2009-05-22 | 1 | -1/+1 |
* | Perl_magic_clearsig() needs to remove magic, else delete $SIG{INT} returns undef | Nicholas Clark | 2009-05-20 | 1 | -2/+26 |
* | fix glob-assign for FORMAT | H.Merijn Brand | 2009-05-20 | 1 | -1/+4 |
* | Convert t/op/magic.t to use test.pl | Nicholas Clark | 2009-05-20 | 1 | -113/+98 |
* | Merge branch 'smartmatch' into blead | Rafael Garcia-Suarez | 2009-05-13 | 2 | -268/+311 |
|\ |
|
| * | Enable more warnings in smart match tests | Rafael Garcia-Suarez | 2009-05-13 | 2 | -8/+10 |
| * | Remove proposed (but unimplemented) $foo ~~ Range smart matching. | Rafael Garcia-Suarez | 2009-05-12 | 2 | -3/+12 |
| * | Implement Hash/Array ~~ Regex (with tests) | Rafael Garcia-Suarez | 2009-05-09 | 1 | -16/+15 |
| * | Add a test for object ~~ string, with stringification overload | Rafael Garcia-Suarez | 2009-05-09 | 1 | -3/+5 |
| * | Add tests for object ~~ regexp | Rafael Garcia-Suarez | 2009-05-09 | 1 | -1/+3 |
| * | Treat blessed references on the left of C<~~> as scalars | Rafael Garcia-Suarez | 2009-05-09 | 1 | -3/+3 |
| * | Implement distributivity in $scalar ~~ @array | Rafael Garcia-Suarez | 2009-05-09 | 1 | -1/+14 |
| * | Document what to do with object on the left and add some TODO tests for that | Rafael Garcia-Suarez | 2009-05-08 | 1 | -0/+6 |
| * | Make ~~ overloading only be invoked on the right argument | Rafael Garcia-Suarez | 2009-05-08 | 2 | -11/+6 |
| * | More tests for ~~ | Rafael Garcia-Suarez | 2009-05-08 | 1 | -19/+68 |
| * | Rewrite tests for objects and ~~ | Rafael Garcia-Suarez | 2009-05-06 | 1 | -20/+24 |
| * | Fix test for stringification of arrays. | Rafael Garcia-Suarez | 2009-05-05 | 1 | -2/+4 |
| * | Merge branch 'blead' into smartmatch | Rafael Garcia-Suarez | 2009-05-05 | 10 | -34/+486 |
| |\ |
|
| * | | Add tests for @array ~~ $string | Rafael Garcia-Suarez | 2009-05-05 | 1 | -0/+4 |
| * | | More tests. Simplify tests for ~~ overloading | Rafael Garcia-Suarez | 2009-03-24 | 1 | -10/+16 |
| * | | Make []~~\&f and {}~~\&f match | Rafael Garcia-Suarez | 2009-03-24 | 1 | -4/+4 |
| * | | Fix tests for ~~ overloading | Rafael Garcia-Suarez | 2009-03-24 | 1 | -29/+7 |
| * | | Implement "~~ $scalar" for numbers and strings | Rafael Garcia-Suarez | 2009-03-24 | 1 | -3/+5 |
| * | | Make ~~ qr// non-commutative | Rafael Garcia-Suarez | 2009-03-23 | 1 | -3/+4 |
| * | | Refactoring work on '~~ @array' implementation | Rafael Garcia-Suarez | 2009-03-23 | 1 | -12/+13 |
| * | | Add more tests with an empty hash on the right of ~~ | Rafael Garcia-Suarez | 2009-03-23 | 1 | -1/+7 |
| * | | Smart match when a hash is on the RHS | Rafael Garcia-Suarez | 2009-03-18 | 1 | -5/+8 |
| * | | Reverse the order of operands for several "~~ hash" tests | Rafael Garcia-Suarez | 2009-03-18 | 1 | -17/+17 |
| * | | Remove obsolete or redundant tests | Rafael Garcia-Suarez | 2009-03-18 | 1 | -15/+4 |
| * | | Document that empty sets don't smart-match | Rafael Garcia-Suarez | 2009-03-17 | 1 | -4/+4 |
| * | | Test that in "~~ sub", the sub is not called on empty hashes and arrays | Rafael Garcia-Suarez | 2009-03-17 | 1 | -0/+4 |