Create debug option for the unit test makefile.

This commit is contained in:
Kalervo Kujala 2012-01-09 20:51:30 +02:00
parent 37d2d82f59
commit aeaaea35a8

View File

@ -88,7 +88,9 @@ PROG:=java \
--tests all \ --tests all \
--testOutput ./test_reports/ --testOutput ./test_reports/
test: # In case this Makefile needs to be debugged then this rule will provide all
# the information from intermediate steps.
debug:
@echo 'Debug browsers paths: $(BROWSERS_PATHS)' @echo 'Debug browsers paths: $(BROWSERS_PATHS)'
@echo @echo
@echo 'Debug browsers paths with mac correction: $(BROWSERS_PATHS_WITH_MAC_CORRECTION)' @echo 'Debug browsers paths with mac correction: $(BROWSERS_PATHS_WITH_MAC_CORRECTION)'
@ -101,13 +103,13 @@ test:
@echo @echo
@echo 'Debug profiles: $(PROFILES)' @echo 'Debug profiles: $(PROFILES)'
@echo @echo
@echo 'About to run command: mkdir -p $(PROFILES)' @echo 'Command to be run: $(PROG)'
@echo
# This rule runs the unit tests with the constructed command.
test:
@mkdir -p $(PROFILES) @mkdir -p $(PROFILES)
@echo
@echo 'About to run command: $(PROG)'
$(PROG) $(PROG)
@echo
@echo 'About to run command: @rm -rf $(PROFILES)'
@rm -rf $(PROFILES) @rm -rf $(PROFILES)
.phony:: test .phony:: test