X-Git-Url: https://perl5.git.perl.org/perl5.git/blobdiff_plain/37808b008bc94c39c5452495998b0106d6d38f6f..59143e29a717d67a61b869a6c5bb49574f1ef43f:/t/lib/croak/toke diff --git a/t/lib/croak/toke b/t/lib/croak/toke index 9f90500..f1817b3 100644 --- a/t/lib/croak/toke +++ b/t/lib/croak/toke @@ -70,6 +70,13 @@ Can't find string terminator "foo" anywhere before EOF at (eval 1) line 1. EXPECT Can't find string terminator "foo" anywhere before EOF at - line 1. ######## +# NAME Unterminated here-doc with non-Latin-1 terminator +BEGIN { binmode STDERR, ":utf8" } +use utf8; +<<옷옷 +EXPECT +Can't find string terminator "옷옷" anywhere before EOF at - line 3. +######## # NAME Unterminated qw// qw/ EXPECT @@ -85,6 +92,20 @@ Can't find string terminator "/" anywhere before EOF at - line 1. EXPECT Can't find string terminator "'" anywhere before EOF at - line 1. ######## +# NAME Unterminated q// with non-ASCII delimiter, under utf8 +BEGIN { binmode STDERR, ":utf8" } +use utf8; +q« +EXPECT +Can't find string terminator "«" anywhere before EOF at - line 3. +######## +# NAME Unterminated q// with non-Latin-1 delimiter +BEGIN { binmode STDERR, ":utf8" } +use utf8; +q 옷 +EXPECT +Can't find string terminator "옷" anywhere before EOF at - line 3. +######## # NAME /\N{/ /\N{/ EXPECT @@ -297,3 +318,42 @@ Execution of - aborted due to compilation errors. BEGIN <> EXPECT Illegal declaration of subroutine BEGIN at - line 1. +######## +# NAME multiple conflict markers +<<<<<<< yours:sample.txt +my $some_code; +======= +my $some_other_code; +>>>>>>> theirs:sample.txt +EXPECT +Version control conflict marker at - line 1, near "<<<<<<<" +Version control conflict marker at - line 3, near "=======" +Version control conflict marker at - line 5, near ">>>>>>>" +Execution of - aborted due to compilation errors. +######## +# NAME (Might be a runaway multi-line...) with Latin-1 delimiters in utf8 +BEGIN { binmode STDERR, ':utf8' } +use utf8; +q« +« time +EXPECT +syntax error at - line 4, near "« time" + (Might be a runaway multi-line «« string starting on line 3) +Execution of - aborted due to compilation errors. +######## +# NAME (Might be a runaway multi-line...) with non-Latin-1 delimiters +BEGIN { binmode STDERR, ':utf8' } +use utf8; +q ϡ +ϡ time +EXPECT +syntax error at - line 4, near "ϡ time" + (Might be a runaway multi-line ϡϡ string starting on line 3) +Execution of - aborted due to compilation errors. +######## +# NAME tr/// handling of mis-formatted \o characters +# may only fail with ASAN +tr/\o-0//; +EXPECT +Missing braces on \o{} at - line 2, within string +Execution of - aborted due to compilation errors.