Remove unnecessary RUNTIME_BIN dependency from container-tests target.

These tests call into runsc API directly, not by invoking runsc binary.

PiperOrigin-RevId: 572955508
This commit is contained in:
Ayush Ranjan
2023-10-12 11:00:37 -07:00
committed by gVisor bot
parent c6a583126e
commit 3962c7dcaf
+2 -2
View File
@@ -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.