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 <james.o.hunt@intel.com>
This commit is contained in:
James O. D. Hunt 2020-06-24 09:13:51 +01:00
parent ec146a1b39
commit f2a19966b2

View File

@ -94,9 +94,11 @@ install: build-service
clean:
@cargo clean
check:
test:
@cargo test --all --target $(TRIPLE)
check: test
run:
@cargo run --target $(TRIPLE)