We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8fc92c commit f40bd92Copy full SHA for f40bd92
t/run/todo.t
@@ -34,6 +34,20 @@ my $switches = "";
34
35
our $TODO;
36
37
+TODO: {
38
+ local $::TODO = 'GH 15419';
39
+ my $results = fresh_perl(<<~'EOF', { stderr => 1 } );
40
+ use strict;
41
+ use warnings;
42
+ binmode *STDOUT, ":encoding(utf8)";
43
+ open(my $copy, '>&', STDOUT);
44
+ print $copy "\x{11e}\n";
45
+ EOF
46
+ is($?, 0, "No assertion failure");
47
+ is $results, "\x{11e}", "print returned the expected output";
48
+ unlike $results, qr/Wide character in print/, "print did not warn about wide characters";
49
+}
50
+
51
TODO: {
52
local $::TODO = "GH 16008";
53
my $results = fresh_perl(<<~'EOF', {} );
0 commit comments