summaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authorAyush Ranjan <ayushranjan@google.com>2020-09-21 10:25:41 -0700
committergVisor bot <gvisor-bot@google.com>2020-09-21 10:27:13 -0700
commite09d78f016ecbada5784324925b3c6b18041a2ec (patch)
treee40e671ad29d945ec23a60ee58f9f7c1095c97f6 /Makefile
parent5ce58829515b7534a2a01210e1a18f1b200727e4 (diff)
Port fuse tests to Makefile.
PiperOrigin-RevId: 332878900
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index d0d1840f6..1a42ec9cd 100644
--- a/Makefile
+++ b/Makefile
@@ -121,8 +121,13 @@ smoke-tests: ## Runs a simple smoke test after build runsc.
@$(call submake,run DOCKER_PRIVILEGED="" ARGS="--alsologtostderr --network none --debug --TESTONLY-unsafe-nonroot=true --rootless do true")
.PHONY: smoke-tests
+fuse-tests:
+ @$(call submake,test OPTIONS="--test_tag_filters fuse" TARGETS="test/fuse/...")
+.PHONY: fuse-tests
+
unit-tests: ## Local package unit tests in pkg/..., runsc/, tools/.., etc.
@$(call submake,test TARGETS="pkg/... runsc/... tools/...")
+.PHONY: unit-tests
tests: ## Runs all unit tests and syscall tests.
tests: unit-tests