summaryrefslogtreecommitdiff
path: root/solenv/gbuild/Module.mk
diff options
context:
space:
mode:
authorBjoern Michaelsen <bjoern.michaelsen@canonical.com>2011-09-16 16:25:14 +0200
committerBjoern Michaelsen <bjoern.michaelsen@canonical.com>2011-09-16 18:56:33 +0200
commita11a94997a99cc45d31112287ca4540ff73c4bb9 (patch)
treec4b56253447152e9362d5b3979b0396b5780e579 /solenv/gbuild/Module.mk
parent403305d593f98ea3af26dd48b3f342044efe9454 (diff)
rename check target to unitcheck in gbuild
Diffstat (limited to 'solenv/gbuild/Module.mk')
-rw-r--r--solenv/gbuild/Module.mk14
1 files changed, 7 insertions, 7 deletions
diff --git a/solenv/gbuild/Module.mk b/solenv/gbuild/Module.mk
index 2bc078bfb959..eed401230372 100644
--- a/solenv/gbuild/Module.mk
+++ b/solenv/gbuild/Module.mk
@@ -32,14 +32,14 @@
# target task depends on
# Module build the product all product targets
# excluding tests recursive Modules
-# Module/check run unit tests all unit tests
+# Module/unitcheck run unit tests all unit tests
# recursive Module/checks
# Module/subsequentcheck run system tests all system tests
# recursive Module/subsequentchecks
# all (global) build the product top-level Module
-# check (global) run unit tests top-level Module/check
+# unitcheck (global) run unit tests top-level Module/unitcheck
# subsequentcheck (global) run system tests top-level Module/subsequentcheck
-# allandcheck (global) default goal all check
+# allandcheck (global) default goal all unitcheck
# Module class
@@ -79,10 +79,10 @@ $(call gb_Module_get_target,%) :
mkdir -p $(dir $@) && \
touch $@)
-.PHONY : all allandcheck clean check subsequentcheck
+.PHONY : all allandcheck clean unitcheck subsequentcheck
.DEFAULT_GOAL := allandcheck
-allandcheck : all check
+allandcheck : all unitcheck
# compatibility with the old build system
ifneq ($(strip $(OOO_SUBSEQUENT_TESTS)),)
@@ -95,7 +95,7 @@ all :
$(call gb_Output_announce_title,all done.)
$(call gb_Output_announce_bell)
-check :
+unitcheck :
$(call gb_Output_announce,loaded modules: $(sort $(gb_Module_ALLMODULES)),$(true),CHK,6)
$(call gb_Output_announce_title,all tests checked.)
$(call gb_Output_announce_bell)
@@ -222,7 +222,7 @@ endif
include $(1)
all : $$(firstword $$(gb_Module_TARGETSTACK))
-check : $$(firstword $$(gb_Module_CHECKTARGETSTACK))
+unitcheck : $$(firstword $$(gb_Module_CHECKTARGETSTACK))
subsequentcheck : $$(firstword $$(gb_Module_SUBSEQUENTCHECKTARGETSTACK))
clean : $$(firstword $$(gb_Module_CLEANTARGETSTACK))