Skip to content

Commit

Permalink
Adding test_only_up make target - closes idaholab#2979
Browse files Browse the repository at this point in the history
  • Loading branch information
permcody authored and bobkinl committed Apr 29, 2014
1 parent b286553 commit 36bc3fb
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion framework/build.mk
Expand Up @@ -309,6 +309,18 @@ test_up: up
(cd $${app} && ./run_tests -q -j $(MOOSE_JOBS)) ; \
done

test_only_up:
@echo ======================================================
@echo Testing the following applications:
@for app in $(DEP_APPS); do echo \ $$app; done
@echo ======================================================
@echo
@for app in $(DEP_APPS); \
do \
echo ====== Testing in $${app} ====== ; \
(cd $${app} && ./run_tests -q -j $(MOOSE_JOBS)) ; \
done

clean_up:
@echo ======================================================
@echo Cleaning the following applications:
Expand All @@ -324,7 +336,7 @@ clean_up:
#
# Maintenance
#
.PHONY: cleanall clean clean_up doc sa test
.PHONY: cleanall clean doc sa test up test_up test_only_up clean_up

#
# Misc
Expand Down

0 comments on commit 36bc3fb

Please sign in to comment.