Re: [perl #128468] Using negative exit code should probably be forbidden (exit -99999)

2016-06-23 Thread Brandon Allbery
On Thu, Jun 23, 2016 at 5:48 PM, Alex Jakimenko < perl6-bugs-follo...@perl.org> wrote: > exit -9 # exit code is 97 > exit -99# exit code is 193 > exit -9 # exit code is 1 > exit - # exit code is 1 > > I think that only non-negative numbers should be allowed. >

[perl #128470] [BUG] Certain Exceptions Crash REPL

2016-06-23 Thread via RT
# New Ticket Created by Zoffix Znet # Please include the string: [perl #128470] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=128470 > Hi, I've tracked this issue to this commit:

[perl #128468] Using negative exit code should probably be forbidden (exit -99999)

2016-06-23 Thread via RT
# New Ticket Created by Alex Jakimenko # Please include the string: [perl #128468] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=128468 > exit -9 # exit code is 97 exit -99# exit code is 193 exit -9 #