perl – 如何使用Test :: More测试STDERR?

前端之家收集整理的这篇文章主要介绍了perl – 如何使用Test :: More测试STDERR?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用Test :: More编写一些测试,并且我正在测试的一个函数打印到STDERR.我想测试输出到STDERR,但有点不确定如何做到这一点.我知道我很亲密.这有效: @H_403_2@use strict; use warnings; use feature qw(say); close STDERR; open STDERR,">",\my $error_string; say STDERR "This is my message"; say qq(The \$error_string is equal to "$error_string");

打印出:

@H_403_2@The $error_string is equal to "This is my message "

但是,我不想关闭STDERR.我只是想重复它.

我试过这个:

@H_403_2@use strict; use warnings; use feature qw(say); open my $error_fh,my $error_string; open STDERR,">&",$error_fh; say STDERR "This is my message"; close $error_fh; say qq(The \$error_string is equal to "$error_string");

但是,$error_string是空白的.

我究竟做错了什么?

解决方法

对我来说,打开STDERR,“>&”,$error_fh(以及打开的STDERR,“>&”.fileno($error_fh))不会返回真值.我认为>&对于重复系统调用,mode可能是一个非常直接的语法糖,这对于像$error_fh这样的伪文件句柄不起作用.

如何本地化STDERR?

@H_403_2@{ local *STDERR = *$error_fh; say STDERR "something"; } # STDERR restored
原文链接:https://www.f2er.com/Perl/171656.html

猜你在找的Perl相关文章