diff options
author | Ayush Ranjan <ayushranjan@google.com> | 2020-09-21 10:25:41 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-09-21 10:27:13 -0700 |
commit | e09d78f016ecbada5784324925b3c6b18041a2ec (patch) | |
tree | e40e671ad29d945ec23a60ee58f9f7c1095c97f6 /Makefile | |
parent | 5ce58829515b7534a2a01210e1a18f1b200727e4 (diff) |
Port fuse tests to Makefile.
PiperOrigin-RevId: 332878900
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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 |