用于 Verilog 或 SystemVerilog 的 TAP(测试任何协议)模块

发布于 2024-08-07 16:07:45 字数 316 浏览 7 评论 0原文

Verilog 是否有 TAP(Test Anything Protocol)实现?那就太好了,因为这样我就可以使用证明来自动检查我的结果。

更新: 10/9/09:有人问为什么不使用断言。部分 TAP 为我提供了一些很好的报告,例如文件数量和测试数量。它还可以与闷烧一起使用来报告一段时间内的进展情况。

2009 年 10 月 12 日:我正在寻找一个最小的实现,在开始和结束时进行大量测试以及确定、诊断和失败功能。 is() 确实很好,但不是必需的。

Is there a TAP (Test Anything Protocol) implementation for Verilog? It would be nice because then I could use prove to check my results automatically.

Update:
10/9/09: It was asked why not use assertions. Partly TAP gives me some good reporting such as number of files and number of tests. It also can be used with smolder for reporting of progress over time.

10/12/09: I'm looking for a minimal implentation with number of tests at the beginning and end and the ok, diag and fail functions. is() would really nice, but not necessary.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梨涡少年 2024-08-14 16:07:45

我认为 Verilog 没有原生 TAP 实现。我想说使用 TAP 的全部意义在于添加 TAP 生成器相对简单。如果您计划在 Verilog 中完成大量工作,您可能需要自己编写。

也就是说,您看过 veripool 吗?您可以使用 Verilog::Parser 作为桥梁来生成 TAP 输出,您可以使用 TAP::解析器 & 测试::Harness

I don't think there is a native TAP implementation for Verilog. I would say that the whole point to using TAP is that adding a TAP generator is relatively straightforward. If you plan to do a lot of work in Verilog, you may want to write your own.

That said, have you looked at veripool? You may be able to use Verilog::Parser as a bridge to generate TAP output you could consume with TAP::Parser & Test::Harness.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文