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.
作为我项目的一部分,我使用 c++ 测试,我必须将参数传递给仅基于特定测试的参数。所以我所做的是在我的Makeppfile中,
ifeq($(TESTNAME), "t_wfi" ) genArg1 += -force_wfi endif
但是现在,添加了更多名称以 t_wfi 开头的测试。我希望所有这些也被传递相同的参数。这段代码会对此有所帮助吗?如果没有,有人可以帮我做吗???
ifneq (,$(filter t_wfi%,$(TESTNAME))) genArg1 += -force_wfi endif