From ec65bb3204fb2253964992eebc45e296fa4e5236 Mon Sep 17 00:00:00 2001 From: Cleber Rosa Date: Thu, 11 Aug 2016 17:00:24 -0300 Subject: [PATCH] Makefile: add target for tests that take a long time to run Some useful (usually functional) tests can take a long time to run. Let's add a new target that developers can use to run long tests every once in a while. Signed-off-by: Cleber Rosa --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index 36c659e3..6fbf7f23 100644 --- a/Makefile +++ b/Makefile @@ -28,6 +28,7 @@ all: @echo @echo "Development related targets:" @echo "check: Runs tree static check, unittests and functional tests" + @echo "check-long: Runs tree static check, unittests and long functional tests" @echo "develop: Runs 'python setup.py --develop on this tree alone" @echo "link: Runs 'python setup.py --develop' in all subprojects and links the needed resources" @echo "clean: Get rid of scratch, byte files and removes the links to other subprojects" @@ -156,6 +157,10 @@ check: clean develop check_cyclical modules_boundaries selftests/checkall selftests/check_tmp_dirs +check-long: clean develop check_cyclical modules_boundaries + AVOCADO_CHECK_LONG=1 selftests/checkall + selftests/check_tmp_dirs + selfcheck: clean check_cyclical modules_boundaries AVOCADO_SELF_CHECK=1 selftests/checkall selftests/check_tmp_dirs -- GitLab