summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorKevin Krakauer <krakauer@google.com>2020-09-14 11:08:56 -0700
committergVisor bot <gvisor-bot@google.com>2020-09-14 11:11:05 -0700
commit833ceb0f14485ee11719b52a42087dfac14de856 (patch)
treecbf924421941d73e1f8fa0a79879c6c5f5b78913
parentb6ca96b9b9e71ba57653cf9d3ef0767771949378 (diff)
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
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 9a321a99d..4f18501a5 100644
--- a/Makefile
+++ b/Makefile
@@ -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