[perl #129227] [SEGV] Concatenation of a large number of combining characters

2016-09-08 Thread via RT
# New Ticket Created by Zoffix Znet # Please include the string: [perl #129227] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=129227 > m: 7 ~ "\x[308]" x 100_000 rakudo-moar 7925d6: OUTPUT«WARNINGS for :␤Useless use of "~

[perl #129221] [BUG][UNI] Combinators get matched by regex even when no ignoremark is set

2016-09-08 Thread Zoffix Znet via RT
Not a bug. See also http://irclog.perlgeek.de/perl6-dev/2016-09-08#i_13170729

[perl #128545] [LTA] [UNI] Date.new(Str) poor error message for digit with diacritic

2016-09-08 Thread Zoffix Znet via RT
Thanks for the report. Fixed in https://github.com/rakudo/rakudo/commit/a2b6f74be1 Tests added in https://github.com/perl6/roast/commit/3ed2af4c42

[perl #128862] [CONC] IO::Socket::Async server throws uncatchable exception in case of encoding errors

2016-09-08 Thread jn...@jnthn.net via RT
On Sat Aug 06 11:25:38 2016, sml...@gmail.com wrote: > Golfed program to demonstrate the problem: > > my $server = IO::Socket::Async.listen('localhost', ); > $server.tap: -> $conn { > $conn.Supply.tap: -> $message { say $message.perl } > } > > my $client = IO::Socket::Async.connect('local

[perl #129228] [SEGV] concurrent network access segfaults in libmoar.so

2016-09-08 Thread Zoffix Znet via RT
I'm unable to reproduce this on HEAD Rakudo even with $n set to 40 and RAKUDO_MAX_THREADS set to 50. What is your perl6 version (perl6 -v). Are you able to try this against HEAD [^1]? Yesterday a fix went in addressing issues in sockets and threads; and recently there have been many other async

[perl #129234] [CONC] `.hyper` and `.race` resume after exceptions

2016-09-08 Thread via RT
# New Ticket Created by Sam S. # Please include the string: [perl #129234] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=129234 > If you `die` inside a `map/for` that is being `hyper/race`d... for (1..1).hyper { die };

[perl #128123] [JVM] failing test in S03-metaops/hyper.t after change from postfix:<++> to prefix:<++>

2016-09-08 Thread Christian Bartolomaeus via RT
And now a lot of tests from roast exploded with "Expected a native int argument for '$a'" after this commit introduced two uses of postfix:<++> and postfix:<--> in lib/Test.pm6: https://github.com/rakudo/rakudo/commit/ffb5789f7eef1157c7556897c4805569df4f7aa4 Modifying the two relevant lines see

[perl #129228] [SEGV] concurrent network access segfaults in libmoar.so

2016-09-08 Thread via RT
# New Ticket Created by Robert Lemmen # Please include the string: [perl #129228] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=129228 > this simple program: ---8<--- use v6;