summaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authorAdin Scannell <ascannell@google.com>2021-01-08 08:14:58 -0800
committergVisor bot <gvisor-bot@google.com>2021-01-08 08:17:41 -0800
commitdf1b23c8dedfa6b29f74cbd00d04182a9fa01925 (patch)
treea9d3f53b0243bc4400117f360022f7e4ec066751 /Makefile
parentbf343394d4988c01461b59b6b05bc508f26855eb (diff)
Fix sha256 for github-workflow.json.
This was not being tested as part of the unit test workflows, and thus was not being hit normally. These tests are also added to the unit tests target. PiperOrigin-RevId: 350766814
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 44d882838..4eb85f5af 100644
--- a/Makefile
+++ b/Makefile
@@ -192,7 +192,7 @@ fuse-tests:
.PHONY: fuse-tests
unit-tests: ## Local package unit tests in pkg/..., runsc/, tools/.., etc.
- @$(call test,pkg/... runsc/... tools/...)
+ @$(call test,//:all pkg/... runsc/... tools/...)
.PHONY: unit-tests
tests: ## Runs all unit tests and syscall tests.