From ab6572314e25fe7552d6f6887cf4d47eaf870611 Mon Sep 17 00:00:00 2001 From: Robin Malley Date: Sat, 11 Sep 2021 21:43:32 +0000 Subject: [PATCH] Exclude slow tests in make test Exclude tests that take a long time to run in the `make test` to speed up automated unit testing. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5d4c8b0..270b8a5 100644 --- a/Makefile +++ b/Makefile @@ -128,4 +128,4 @@ smr.so : $(src_files) conf/smr.conf conf/build.conf $(Q)$(KODEV) build test : $(built) - $(Q)$(CD) kore_chroot && busted -v + $(Q)$(CD) kore_chroot && busted -v --exclude-tags slow