Skip to content

Commit

Permalink
Added make targets to simplify launching during dev
Browse files Browse the repository at this point in the history
  • Loading branch information
skarfacegc committed Feb 12, 2015
1 parent 85ed455 commit a5b0a2c
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit a5b0a2c

Please sign in to comment.