From 0d696f42a5faf082c28fdb6d07c1635e68d33515 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Bartolom=C3=A4us?= Date: Sat, 4 Feb 2023 21:45:37 +0100 Subject: [PATCH] [JVM] Fudge some newly failing tests --- S03-operators/names.t | 1 + integration/error-reporting.t | 1 + 2 files changed, 2 insertions(+) diff --git a/S03-operators/names.t b/S03-operators/names.t index 607a358caf..b03fbff3fc 100644 --- a/S03-operators/names.t +++ b/S03-operators/names.t @@ -10,6 +10,7 @@ is infix:<->(3, 8), -5, 'Can refer to infix:<->'; is &infix:(3, 4), Order::Less, 'Can refer to &infix:'; +#?rakudo.jvm todo 'Something wrong with stringification of &infix:<+> et al. -- only Sub+{is-pure} is reported' ok ~&infix:<+> ~~ /infix/, 'String value of &infix:<+> contains "infix"'; ok ~&infix:<+> ~~ /\+/, 'String value of &infix:<+> contains "+"'; diff --git a/integration/error-reporting.t b/integration/error-reporting.t index f7e0dd0d8a..b1ed995275 100644 --- a/integration/error-reporting.t +++ b/integration/error-reporting.t @@ -198,6 +198,7 @@ is_run '...', {:out(''), :err{ not $^o.contains: 'Unhandled exception' }}, 'stub code must not produce `Unhandled exception` message'; # https://github.com/Raku/old-issue-tracker/issues/4262 +#?rakudo.jvm todo 'NullPointerException in error reporting, https://github.com/rakudo/rakudo/issues/5180' is_run Q[#`{{ my long unfinished comment'], { :out(''), :err{ $^o.contains: 'line 1' }}, 'Unfinished comment error points on correct line';