Skip to content

Commit

Permalink
Add Makefile for make test
Browse files Browse the repository at this point in the history
Later will support other targets for release etc.
  • Loading branch information
ingydotnet committed Jun 5, 2017
1 parent 10a4298 commit b406506
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
t = t/
j = 1
o =

# `make test` usage:
# make test
# make test t=t/00.load.t
# make test j=8
# make test o=-v

test:
prove -r $o -j$j --exec='perl6 -Ilib -I../yaml-libyaml-perl6' $t

testv:
make test o=-v

0 comments on commit b406506

Please sign in to comment.