本文介绍了我如何告诉 Perl 的证明实用程序忽略某些测试?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

目前我像这样运行 prove:

prove -v -r .

有没有办法使用正则表达式排除文件?我在 perldoc proofprove -H 的输出中看不到.

Is there a way to exclude files using regex? I could not see that in perldoc prove or the output of prove -H.

推荐答案

通常做这样的事情:

$ find t/ -name '*.t' ! -name '*timeout*' | xargs prove -l

(跳过慢超时测试)

这篇关于我如何告诉 Perl 的证明实用程序忽略某些测试?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-11 14:17