Skip to content

Commit

Permalink
add continuous testing to makefile
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.csail.mit.edu/locomotion/robotlib/trunk@7863 c9849af7-e679-4ec6-a44e-fc146a885bd3
  • Loading branch information
russt committed Nov 29, 2013
1 parent 86e77ac commit 4ca8bc8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,12 @@ htmldoc: doxygen
mlint :
matlab -nodisplay -r "addpath(fullfile(pwd,'thirdParty','runmlint')); runmlint('.mlintopts'); exit"

test : all
test : configure
-@cd pod-build && ctest -D Experimental --output-on-failure --timeout 7200

test_continuous : configure
while true; do $(MAKE) Continuous; sleep 300; done

.PHONY: check_prereqs install_prereqs_macports install_prereqs_homebrew install_prereqs_ubuntu
check_prereqs:
if javac -source 1.6 -version > /dev/null 2> /dev/null; then exit 0; else echo "ERROR: Java 6 (or greater) sdk is required."; exit 1; fi # test for javac >= 1.6
Expand Down

0 comments on commit 4ca8bc8

Please sign in to comment.