Fix modprobe dependency

The modprobe command only takes 1 module per invocation. The second module name
is being passed as a module parameter.

PiperOrigin-RevId: 331585765
This commit is contained in:
Kevin Krakauer 2020-09-14 11:08:56 -07:00 committed by gVisor bot
parent b6ca96b9b9
commit 833ceb0f14
1 changed files with 2 additions and 1 deletions

View File

@ -211,7 +211,8 @@ packetdrill-tests: load-packetdrill
.PHONY: packetdrill-tests
packetimpact-tests: load-packetimpact
@sudo modprobe iptable_filter ip6table_filter
@sudo modprobe iptable_filter
@sudo modprobe ip6table_filter
@$(call submake,install-test-runtime RUNTIME="packetimpact")
@$(call submake,test-runtime OPTIONS="--jobs=HOST_CPUS*3 --local_test_jobs=HOST_CPUS*3" RUNTIME="packetimpact" TARGETS="$(shell $(MAKE) query TARGETS='attr(tags, packetimpact, tests(//...))')")
.PHONY: packetimpact-tests