如何运行用 Guile 编写的 TAP::Harness 测试?
通常的方法
test: $(PERL) "-MExtUtils::Command::MM" "-e" "test_harness($(TEST_VERBOSE), '$(INCDIRS)')" $(TEST_FILES)
无法运行 Guile 脚本,因为它向 Guile 传递了额外的参数“-w”。
The usual approach of
test: $(PERL) "-MExtUtils::Command::MM" "-e" "test_harness($(TEST_VERBOSE), '$(INCDIRS)')" $(TEST_FILES)
fails to run Guile scripts, because it passes to Guile the extra parameter "-w".
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一种可能的方法是按如下方式设置您的项目。
您的目录结构如下:
您的./project/Makefile包含以下内容:
您的./project/t/scripts/RunGuileTests.pl内容是:
您的Guile测试脚本应该从以下内容开始:
One possible approach is to set up your project as follows.
Your directory structure is as follows:
Your ./project/Makefile contains the following:
Your ./project/t/scripts/RunGuileTests.pl contents are:
Your Guile test scripts should start with: