当我使用prove
实用程序运行perl测试时,如果测试中的方法包含未以换行符终止的print
语句,它将失败。
use Test::More tests=>1;
ok(foo(), "calling foo");
sub foo{
print "A";
1;
}
这导致
Bad plan. You planned 1 tests but ran 0.
如果我添加一行换行符:print "An";
,则测试通过。
(请注意,如果我只是执行测试perl mytest.t
而不是使用prove
,那么它可以通过任何一种方式)。
有什么想法吗?为什么会这样,以及如何解决这个问题?
我找到了一个快速的解决方法:
$|=0; # no auto-flush
但我(还)不知道为什么会这样。