[perl #61930] [PATCH] More tests in 04-op-cmp.t

2009-01-02 Thread Kyle Hasselbacher
# New Ticket Created by "Kyle Hasselbacher" # Please include the string: [perl #61930] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=61930 > I don't know why '1 < 2' would work but '2 < 1' would not work, but this tests fo

[perl #46797] [TODO] [Perl] Add more tests of SmartLinkServer to the smartlinks tests

2008-09-16 Thread James Keenan via RT
Rejected, as we're deleting the file proposed for expansion.

[perl #46795] [TODO] [Perl] Add more tests of TestInfo to the smartlinks tests

2008-09-16 Thread James Keenan via RT
Rejected, as we're deleting the file proposed for expansion.

[perl #46793] [TODO] [Perl] Add more tests of Test to the smartlinks tests

2008-09-16 Thread James Keenan via RT
Rejected, as we're deleting the file proposed for expansion.

[perl #46791] [TODO] [Perl] Add more tests of SpecFiles to the smartlinks tests

2008-09-16 Thread James Keenan via RT
Rejected, as we're deleting the file proposed for expansion.

[perl #46789] [TODO] [Perl] Add many more tests of SpecFiles->files to the smartlinks tests

2008-09-16 Thread James Keenan via RT
Rejected, as we're deleting the file proposed for expansion.

[perl #55768] [PATCH] more tests for spectest_regression

2008-06-14 Thread via RT
# New Ticket Created by Moritz Lenz # Please include the string: [perl #55768] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=55768 > Attached patch adds three more test files (list builtins). The last two tests in joint.

[perl #55772] Re: [PATCH] more tests for spectest_regression

2008-06-14 Thread via RT
# New Ticket Created by Jerry Gay # Please include the string: [perl #55772] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=55772 > On Sat, Jun 14, 2008 at 4:08 AM, Moritz Lenz <[EMAIL PROTECTED]> wrote: > > Attached patch

Re: [PATCH] more tests for spectest_regression

2008-06-14 Thread jerry gay
On Sat, Jun 14, 2008 at 4:08 AM, Moritz Lenz <[EMAIL PROTECTED]> wrote: > > Attached patch adds three more test files (list builtins). > > The last two tests in joint. are likely to be wrong, and are fudged as > such. Further clarification is welcome. > > More on that in a separate mail. > thanks,

[PATCH] more tests for spectest_regression

2008-06-14 Thread Moritz Lenz
Attached patch adds three more test files (list builtins). The last two tests in joint. are likely to be wrong, and are fudged as such. Further clarification is welcome. More on that in a separate mail. Cheers, Moritz -- Moritz Lenz http://moritz.faui2k3.org/ | http://perl-6.de/ Index: t/spec

[perl #55304] [PATCH] eval_(dies|lives)_ok methods for rakudo's Test.pm, and more tests

2008-06-08 Thread Vasily Chekalkin via RT
On Sat Jun 07 07:13:07 2008, ronaldxs wrote: Probably I don't understand correctly your question. This is output from my version of patched rakudo: $ ../../parrot perl6.pbc > eval 'my $x = 2; $x = $x / 0; say $x;'; say 'eval exception ', $!; eval exception Divide by zero Is it what you want? -

Re: [perl #55304] [PATCH] eval_(dies|lives)_ok methods for rakudo's Test.pm, and more tests

2008-06-07 Thread Brandon S. Allbery KF8NH
On 2008 Jun 6, at 23:53, Vasily Chekalkin wrote: jerry gay wrote: would you reformat this in universal diff format please? my patch program doesn't speak git. Strange... It is 'universal diff' format. Can be applied with 'patch -p1 < eval.diff' in top-level parrot directory. Or with 'patch -

Re: [perl #55304] [PATCH] eval_(dies|lives)_ok methods for rakudo's Test.pm, and more tests

2008-06-07 Thread Ronald Schmidt
Vasily Chekalkin wrote: This is wrong patch. eval() shouldn't throws any exceptions. Correct patch for 'eval()' and Test.pm attached. As Mr Lenz wrote with respect to eval exceptions and this patch: Are there any exceptions that are not caught by eval? Currently rakudo seems to catch every

[perl #55304] [PATCH] eval_(dies|lives)_ok methods for rakudo's Test.pm, and more tests

2008-06-07 Thread Vasily Chekalkin via RT
On Fri Jun 06 20:11:36 2008, particle wrote: (Sorry for spam if any. Looks like my message was rejected by mailman.) eval() shouldn't throws any exceptions. Correct patch for 'eval()' and Test.pm attached. -- Bacek. === --- Test.pm (orig) +++ Te

Re: [perl #55304] [PATCH] eval_(dies|lives)_ok methods for rakudo's Test.pm, and more tests

2008-06-07 Thread Vasily Chekalkin
jerry gay wrote: would you reformat this in universal diff format please? my patch program doesn't speak git. Strange... It is 'universal diff' format. Can be applied with 'patch -p1 < eval.diff' in top-level parrot directory. Or with 'patch -p3 < eval.diff' in languages/perl6. Anyway, attache

Re: [perl #55304] [PATCH] eval_(dies|lives)_ok methods for rakudo's Test.pm, and more tests

2008-06-07 Thread Vasily Chekalkin
jerry gay wrote: On Wed, Jun 4, 2008 at 2:46 PM, Moritz Lenz <[EMAIL PROTECTED]> wrote: Oops, forgot to attach patch. Now it's really there. thanks, applied as of r28074. ~jerry This is wrong patch. eval() shouldn't throws any exceptions. Correct patch for 'eval()' and Test.pm attached. -

Re: [perl #55304] [PATCH] eval_(dies|lives)_ok methods for rakudo's Test.pm, and more tests

2008-06-06 Thread jerry gay
On Fri, Jun 6, 2008 at 7:34 PM, Vasily Chekalkin <[EMAIL PROTECTED]> wrote: > jerry gay wrote: >> >> On Wed, Jun 4, 2008 at 2:46 PM, Moritz Lenz <[EMAIL PROTECTED]> >> wrote: >>> >>> Oops, forgot to attach patch. Now it's really there. >>> >> thanks, applied as of r28074. >> ~jerry > > This is wron

Re: [perl #55304] [PATCH] eval_(dies|lives)_ok methods for rakudo's Test.pm, and more tests

2008-06-05 Thread jerry gay
On Thu, Jun 5, 2008 at 3:05 PM, Moritz Lenz <[EMAIL PROTECTED]> wrote: > Ronald Schmidt wrote: >> Moritz Lenz wrote: >>> Oops, forgot to attach patch. Now it's really there. >>> >>> >> Your implementations of eval_lives_ok and eval_dies_ok seem >> inconsistent. eval_lives_ok uses try and eval_dies

Re: [perl #55304] [PATCH] eval_(dies|lives)_ok methods for rakudo's Test.pm, and more tests

2008-06-05 Thread Moritz Lenz
Ronald Schmidt wrote: > Moritz Lenz wrote: >> Oops, forgot to attach patch. Now it's really there. >> >> > Your implementations of eval_lives_ok and eval_dies_ok seem > inconsistent. eval_lives_ok uses try and eval_dies_ok does not. The > two implementations may catch different types of exce

Re: [perl #55304] [PATCH] eval_(dies|lives)_ok methods for rakudo's Test.pm, and more tests

2008-06-05 Thread Ronald Schmidt
Moritz Lenz wrote: Oops, forgot to attach patch. Now it's really there. Your implementations of eval_lives_ok and eval_dies_ok seem inconsistent. eval_lives_ok uses try and eval_dies_ok does not. The two implementations may catch different types of exceptions. I am proposing the patch b

[perl #55304] [PATCH] eval_(dies|lives)_ok methods for rakudo's Test.pm, and more tests

2008-06-05 Thread via RT
# New Ticket Created by Moritz Lenz # Please include the string: [perl #55304] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=55304 > Attached patch, mostly courtesy Vasily "bacek" Chekalkin, adds the eval_lives_ok and eval

Re: [perl #55304] [PATCH] eval_(dies|lives)_ok methods for rakudo's Test.pm, and more tests

2008-06-04 Thread jerry gay
On Wed, Jun 4, 2008 at 2:46 PM, Moritz Lenz <[EMAIL PROTECTED]> wrote: > Oops, forgot to attach patch. Now it's really there. > thanks, applied as of r28074. ~jerry

Re: [perl #55304] [PATCH] eval_(dies|lives)_ok methods for rakudo's Test.pm, and more tests

2008-06-04 Thread Moritz Lenz
Oops, forgot to attach patch. Now it's really there. -- Moritz Lenz http://moritz.faui2k3.org/ | http://perl-6.de/ Index: languages/perl6/t/spectest_regression.data === --- languages/perl6/t/spectest_regression.data (revision 28065)

[PATCH] eval_(dies|lives)_ok methods for rakudo's Test.pm, and more tests

2008-06-04 Thread Moritz Lenz
Attached patch, mostly courtesy Vasily "bacek" Chekalkin, adds the eval_lives_ok and eval_dies_ok methods to Test.pm, and adds three more passing tests to 'make spectest_regression'. -- Moritz Lenz http://moritz.faui2k3.org/ | http://perl-6.de/

[PATCH] more tests, and test clarification

2008-05-30 Thread Moritz Lenz
Attached patch adds a few more passing tests to 'make spectest_regression'. bacek++ for fudging some of them, and pmichaud++ for implementing much of it! I didn't add S29-list/map.t to the list which also passes (fudged), but has this block at its end: # # Map with mutating block # # Dubious: A

[perl #46797] [TODO] [Perl] Add more tests of SmartLinkServer to the smartlinks tests

2007-10-24 Thread via RT
# New Ticket Created by Paul Cochrane # Please include the string: [perl #46797] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=46797 > In t/tools/smartlinks.t there is the todo item: # TODO: SmartLinkServer Which means:

[perl #46795] [TODO] [Perl] Add more tests of TestInfo to the smartlinks tests

2007-10-24 Thread via RT
# New Ticket Created by Paul Cochrane # Please include the string: [perl #46795] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=46795 > In t/tools/smartlinks.t there is the todo item: # TODO: TestInfo Which means: test th

[perl #46793] [TODO] [Perl] Add more tests of Test to the smartlinks tests

2007-10-24 Thread via RT
# New Ticket Created by Paul Cochrane # Please include the string: [perl #46793] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=46793 > In t/tools/smartlinks.t there is the todo item: # TODO: Test Which means: test the C

[perl #46791] [TODO] [Perl] Add more tests of SpecFiles to the smartlinks tests

2007-10-24 Thread via RT
# New Ticket Created by Paul Cochrane # Please include the string: [perl #46791] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=46791 > In t/tools/smartlinks.t in the context of the C class there is the todo item: # TODO:

[perl #46789] [TODO] [Perl] Add many more tests of SpecFiles->files to the smartlinks tests

2007-10-24 Thread via RT
ODO: many more ->files tests Which means to say; add many more tests of the C method of this class.

[perl #40106] [PATCH] 15 more tests work for PGE::P5Regex

2006-08-08 Thread via RT
# New Ticket Created by Kay-Uwe Huell # Please include the string: [perl #40106] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=40106 > Hi parrot-team, fixed a few things in PGE::P5Regex and t/compilers/pge/p5regex/p5rx.t

[perl #39979] [TODO] Tcl - More tests for [expr]

2006-07-26 Thread via RT
# New Ticket Created by Matt Diephouse # Please include the string: [perl #39979] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=39979 > The following aspects of [expr] still need tests: - Unary operators with string

[perl #38028] Some more tests to ops in pir

2005-12-26 Thread via RT
# New Ticket Created by [EMAIL PROTECTED] # Please include the string: [perl #38028] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/rt3/Ticket/Display.html?id=38028 > Most are trivial, few are important. Cheers Alberto -- Alberto Simões - Departame

Re: More tests.

2002-11-25 Thread Joseph F. Ryan
Tanton Gibbs wrote radii.t This isn't your fault, but I have to say that 0o0777 looks really bad in my font...i.e. looks like 000777. Perhaps the powers that be may eliminate octal (who uses it?) or change it to c? t? or l? Hmmm, maybe, but 0o00 would be so great in halloween-based JAPHs ;)

Re: More tests.

2002-11-25 Thread Tanton Gibbs
h that print "&(noret)" should be print "$(noret)"; Is this correct? Anyway, it looks good...keep up the good work. Tanton - Original Message - From: "Joseph F. Ryan" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, November 23, 20

More tests.

2002-11-23 Thread Joseph F. Ryan
I've added a slew of new tests to the p6-literals test-suite, including: - Error tests. - Bit-type. - Subscripted variable interpolation. - Variable method interpolation. - Many conversion tests. I was a bit unsure (read: possibly rong as wrabbits) on some of the error and conversion tests, so le

[perl #15680] [PATCH] More tests

2002-07-27 Thread via RT
Applied, thanks. -- Tom Hughes ([EMAIL PROTECTED]) http://www.compton.nu/

[perl #15680] [PATCH] More tests

2002-07-27 Thread via RT
# New Ticket Created by Simon Glover # Please include the string: [perl #15680] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt2/Ticket/Display.html?id=15680 > The patches below add tests for: * jsr * bor_i_i, bxor_i_i and band_i_i * no

More Tests!

2002-06-20 Thread Robert Spier
We need more tests. According to.. http://www.hitchhiker.org/parrot_coverage/ only 33% of the lines are covered! if something breaks in the other 67%, we'll never know, unless we have tests. -R --

Re: [netlabs #644] [PATCH] More tests

2002-05-31 Thread Josh Wilmes
At 23:25 on 05/31/2002 -, Simon Glover (via RT) <[EMAIL PROTECTED]> wrote: > This patch adds tests for the index, depth & intdepth ops, as well > as adding an extra test for intsave/intrestore. > > Simon Committed, daddio. --Josh

[netlabs #644] [PATCH] More tests

2002-05-31 Thread via RT
e Parrot::Test tests => 32; use Test::More; # Tests for stack operations, currently push*, push_*_c and pop* @@ -589,6 +589,32 @@ OUTPUT } +output_is(<<'CODE', <<'OUTPUT', "depth op"); +depth I0 +print I0 +print &quo

[APPLIED] Re: [PATCH] More tests for abs, inc and dec

2002-03-09 Thread Nicholas Clark
On Sat, Mar 09, 2002 at 09:18:17PM +, Simon Glover wrote: > > The enclosed patch fixes a few of the holes in our test coverage > uncovered by Josh Wilmes Thanks, applied. Nicholas Clark -- Even better than the real thing:http://nms-cgi.sourceforge.net/

[PATCH] More tests for abs, inc and dec

2002-03-09 Thread Simon Glover
The enclosed patch fixes a few of the holes in our test coverage uncovered by Josh Wilmes Simon --- t/op/integer.t.old Sat Mar 9 15:38:21 2002 +++ t/op/integer.t Sat Mar 9 15:55:33 2002 @@ -1,6 +1,6 @@ #! perl -w -use Parrot::Test tests => 30; +use Parrot::Test tests => 32; o

Re: [Patch] More tests for bitwise functions

2001-12-27 Thread Dan Sugalski
At 12:02 PM 12/15/2001 -1000, David & Lisa Jacobs wrote: >This patch adds tests for all the bitwise opcodes. Applied, thanks. Dan --"it's like this"--- Dan Sugalski even samurai

[Patch] More tests for bitwise functions

2001-12-15 Thread David & Lisa Jacobs
This patch adds tests for all the bitwise opcodes. David *** bitwise.t 26 Sep 2001 05:55:32 - 1.2 --- bitwise.t 15 Dec 2001 21:53:18 - *** *** 1,6 #! perl -w ! use Parrot::Test tests => 4; output_is(<<'CODE', <<'OUTPUT', "shr_i_ic (>>)"); set I0, 0b001100 --

Re: [PATCH] More tests for transcendental maths functions

2001-12-14 Thread Dan Sugalski
At 05:01 PM 12/14/2001 +, Simon Glover wrote: > This patch contains some more tests for the pow and atan families of > opcodes; it should cover all the different possible combinations of > n, i, nc and nc. Applied, thanks.

[PATCH] More tests for transcendental maths functions

2001-12-14 Thread Simon Glover
This patch contains some more tests for the pow and atan families of opcodes; it should cover all the different possible combinations of n, i, nc and nc. Simon Glover --- trans.old Sun Dec 2 20:00:01 2001 +++ trans.t Fri Dec 14 16:47:13 2001 @@ -288,37 +288,114 @@ ok 2 OUTPUT