summaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authorAdin Scannell <ascannell@google.com>2021-01-07 01:15:20 -0800
committergVisor bot <gvisor-bot@google.com>2021-01-07 01:17:10 -0800
commit776016ac6412006671a5dbccb5e9af21bf9b01f7 (patch)
treee0cdcaafec773ba8cfdcb8c69e63d058f506367a /Makefile
parentfa8682da0fd43556ae0a405c02bac27e6d15a8e6 (diff)
Fix native benchmarks.
PiperOrigin-RevId: 350509137
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 9f3bd6c88..8ead2cfb2 100644
--- a/Makefile
+++ b/Makefile
@@ -351,9 +351,9 @@ run_benchmark = \
benchmark-platforms: load-benchmarks $(RUNTIME_BIN) ## Runs benchmarks for runc and all given platforms in BENCHMARK_PLATFORMS.
@$(foreach PLATFORM,$(BENCHMARKS_PLATFORMS), \
- $(call run_benchmark,$(PLATFORM),--platform=$(PLATFORM) --vfs2) && \
+ $(call run_benchmark,$(PLATFORM),--platform=$(PLATFORM) --vfs2) && \
) true
- @$(call run-benchmark,runc)
+ @$(call run_benchmark,runc)
.PHONY: benchmark-platforms
run-benchmark: load-benchmarks $(RUNTIME_BIN) ## Runs single benchmark and optionally sends data to BigQuery.