提交 ec65bb32 编写于 作者: C Cleber Rosa

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: NCleber Rosa <crosa@redhat.com>
上级 df2d1bb5
......@@ -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
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册