Skip to content

Commit

Permalink
deparse-skips.txt: skip undef.t, opcount.t for now
Browse files Browse the repository at this point in the history
Both these files have had tests added using this unusual construct:

    keys %{($h=undef)||{}}

which currently gets deparsed as

    keys %{ {} unless $h=undef }

which then confuses the parser.
  • Loading branch information
iabyn committed May 26, 2023
1 parent 90fd99b commit 0981555
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Porting/deparse-skips.txt
Expand Up @@ -73,9 +73,11 @@ op/sub.t
op/switch.t
op/symbolcache.t
op/taint.t
op/undef.t # keys%{($h=undef)||{}} becomes keys%{{} unless .. }
op/vec.t
op/warn.t
op/write.t
perf/opcount.t # keys%{($h=undef)||{}} becomes keys%{{} unless .. }
porting/globvar.t
re/overload.t # [perl #123385] %^H output
re/pat_advanced.t # [perl #123417]
Expand Down

0 comments on commit 0981555

Please sign in to comment.