From 3962c7dcaf4b15e7c0c11213eb83d281dd71c13c Mon Sep 17 00:00:00 2001 From: Ayush Ranjan Date: Thu, 12 Oct 2023 10:58:01 -0700 Subject: [PATCH] Remove unnecessary RUNTIME_BIN dependency from container-tests target. These tests call into runsc API directly, not by invoking runsc binary. PiperOrigin-RevId: 572955508 --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 3f4b3e77d..e00f781c1 100644 --- a/Makefile +++ b/Makefile @@ -209,8 +209,8 @@ unit-tests: ## Local package unit tests in pkg/..., tools/.., etc. .PHONY: unit-tests # See unit-tests: this includes runsc/container. -container-tests: $(RUNTIME_BIN) ## Run all tests in runsc/container/... - @$(call test,--test_tag_filters=-nogo --test_env=RUNTIME=$(RUNTIME_BIN) runsc/container/...) +container-tests: ## Run all tests in runsc/container/... + @$(call test,--test_tag_filters=-nogo runsc/container/...) .PHONY: container-tests tests: ## Runs all unit tests and syscall tests.