Skip to content

Commit 590fb96

Browse files
committed
unfudge error reporting tests for rakudo.jvm
1 parent c3da895 commit 590fb96

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

integration/error-reporting.t

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ BEGIN { @*INC.push('t/spec/packages') };
77

88
use Test::Util;
99

10-
#?rakudo.jvm todo "nigh"
1110
is_run "use v6;\n'a' =~ /foo/", {
1211
status => { $_ != 0 },
1312
out => '',
@@ -30,7 +29,6 @@ is_run "use v6;\n\nsay 'Hello';\nsay 'a'.my_non_existent_method_6R5();",
3029
}, 'Method not found error mentions method name and line number';
3130

3231
# RT #75446
33-
#?rakudo.jvm todo "nigh"
3432
is_run 'use v6;
3533
sub bar {
3634
pfff();
@@ -43,7 +41,6 @@ bar()',
4341
err => all(rx/pfff/, rx/<<3>>/),
4442
}, 'got the right line number for nonexisting sub inside another sub';
4543

46-
#?rakudo.jvm todo "nigh"
4744
is_run 'say 42; nosuchsub()',
4845
{
4946
status => { $_ != 0 },
@@ -77,7 +74,6 @@ A.new.x(42);',
7774
}, 'got the right line number for accessors';
7875

7976
# RT #80982
80-
#?rakudo.jvm todo "nigh"
8177
is_run 'say 0080982',
8278
{
8379
status => 0,
@@ -108,7 +104,6 @@ is_run 'sub mysub {
108104

109105
# RT #77736
110106
#?niecza todo
111-
#?rakudo.jvm todo "nigh"
112107
is_run 'die "foo"; END { say "end run" }',
113108
{
114109
status => * != 0,

0 commit comments

Comments
 (0)