From f2a19966b2de3ea93c10fdb962ea86ac1ac5e8b9 Mon Sep 17 00:00:00 2001 From: "James O. D. Hunt" Date: Wed, 24 Jun 2020 09:13:51 +0100 Subject: [PATCH] agent: Rename check rule to test Changed the name of the rule that runs the tests to "test" for consistency, but retained `check` for backwards compatibility for now. Signed-off-by: James O. D. Hunt --- src/agent/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/agent/Makefile b/src/agent/Makefile index 02055aba7..79fd92707 100644 --- a/src/agent/Makefile +++ b/src/agent/Makefile @@ -94,9 +94,11 @@ install: build-service clean: @cargo clean -check: +test: @cargo test --all --target $(TRIPLE) +check: test + run: @cargo run --target $(TRIPLE)