make/RunTests.gmk
changeset 47928 fb62d4519338
parent 47329 43b33ee91ea0
child 47932 0c22f6b9b5e2
equal deleted inserted replaced
47927:a6b2d28c8094 47928:fb62d4519338
   160 endef
   160 endef
   161 
   161 
   162 ifeq ($(TEST), )
   162 ifeq ($(TEST), )
   163   $(info No test selection given in TEST!)
   163   $(info No test selection given in TEST!)
   164   $(info Please use e.g. 'run-test TEST=tier1' or 'run-test-tier1')
   164   $(info Please use e.g. 'run-test TEST=tier1' or 'run-test-tier1')
   165   $(info See common/doc/testing.[md|html] for help)
   165   $(info See doc/testing.[md|html] for help)
   166   $(error Cannot continue)
   166   $(error Cannot continue)
   167 endif
   167 endif
   168 
   168 
   169 # Now intelligently convert the test selection given by the user in TEST
   169 # Now intelligently convert the test selection given by the user in TEST
   170 # into a list of fully qualified test descriptors of the tests to run.
   170 # into a list of fully qualified test descriptors of the tests to run.
   183   $(eval TESTS_TO_RUN += $(PARSED_TESTS)) \
   183   $(eval TESTS_TO_RUN += $(PARSED_TESTS)) \
   184 )
   184 )
   185 
   185 
   186 ifneq ($(UNKNOWN_TEST), )
   186 ifneq ($(UNKNOWN_TEST), )
   187   $(info Unknown test selection: '$(UNKNOWN_TEST)')
   187   $(info Unknown test selection: '$(UNKNOWN_TEST)')
   188   $(info See common/doc/testing.[md|html] for help)
   188   $(info See doc/testing.[md|html] for help)
   189   $(error Cannot continue)
   189   $(error Cannot continue)
   190 endif
   190 endif
   191 
   191 
   192 TESTS_TO_RUN := $(strip $(TESTS_TO_RUN))
   192 TESTS_TO_RUN := $(strip $(TESTS_TO_RUN))
   193 
   193