Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我希望能够在 Specman 测试中为日志文件指定文件名 stem。我需要对主要的 *.elog 文件名进行硬编码,以免测试之间出现差异并混淆后处理脚本。我可以将约束或命令行传递给 Specman 吗?
您还可以使用 specman 命令“set log”或使用以下代码。
extend sys { run() is also { specman("set log specman.elog"); }; };
您可以使用开关 -log 控制 *.elog 文件名。