diff --git a/Makefile b/Makefile index ef1b72d..ce5dcfb 100644 --- a/Makefile +++ b/Makefile @@ -3,14 +3,28 @@ jenkins: PERL5OPT=-MDevel::Cover=-coverage,statement,branch,subroutine,time,+ignore,".*prove.*","\.t" prove -r --timer --formatter=TAP::Formatter::JUnit > test_results.xml cover -report html cover -report clover + test: prove -Pretty -r --verbose + cover: cover --delete PERL5OPT=-MDevel::Cover=-coverage,statement,branch,subroutine,time,+ignore,".*prove.*","\.t" prove -r sleep 2 cover --launch -clean: + +stop: + -kill `cat log/main.pid` + +clean: stop rm -rf cover_db/ TEST_FT_* tests_results.xml -distclean: clean + + +distclean: stop clean rm Data/* log/* + +run: stop + sleep 2; + ./FlowTrack.pl + +cleanrun: stop distclean run \ No newline at end of file