From 2e9b115fa06807a3e7c402adffc35af9192d9fbb Mon Sep 17 00:00:00 2001 From: Timothy J Warren Date: Tue, 20 Apr 2021 08:16:09 -0400 Subject: [PATCH] Add Makefile target for nostd tests --- Makefile | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 8269222..bb52643 100644 --- a/Makefile +++ b/Makefile @@ -11,4 +11,12 @@ coverage-report: generate-coverage clean: cargo clean rm cobertura.xml - rm coverage.html \ No newline at end of file + rm coverage.html + +test: + cargo test + +test-no-std: + cargo test --no-default-features --features alloc + +.PHONY: test test-no-std \ No newline at end of file