Skip to content

Commit

Permalink
hibari >> GH41 - Update Hibari master branch (v0.1.x) for Erlang/OTP …
Browse files Browse the repository at this point in the history
…17.x

- Replace rebar sub-command "eunit-compile" with
  "eunit -r compile_only=true"
  • Loading branch information
tatsuya6502 committed Mar 9, 2015
1 parent aee24d9 commit 2fa5886
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Makefile
Expand Up @@ -93,27 +93,27 @@ compile-proper:

eunit-compile: compile
@echo "eunit test compiling: $(RELPKG) ..."
./rebar eunit-compile skip_apps='meck'
./rebar eunit -r compile_only=true skip_apps='meck'

eqc-compile: compile-eqc
@echo "eqc test compiling: $(RELPKG) ..."
./rebar eunit-compile -D QC -D QC_EQC skip_apps='meck'
./rebar eunit -r -D QC -D QC_EQC compile_only=true skip_apps='meck'

proper-compile: compile-proper
@echo "proper test compiling: $(RELPKG) ..."
./rebar eunit-compile -D QC -D QC_PROPER
./rebar eunit -r -D QC -D QC_PROPER compile_only=true skip_apps='meck'

eunit: eunit-compile
@echo "eunit testing: $(RELPKG) ..."
./rebar eunit skip_apps=meck
./rebar eunit -r skip_apps=meck

eunit-core: eunit-compile
@echo "eunit testing (core): $(RELPKG) ..."
./rebar eunit skip_apps='meck,asciiedoc,edown,gdss_ubf_proto,ubf_thrift,ubf'
./rebar eunit -r skip_apps='meck,asciiedoc,edown,gdss_ubf_proto,ubf_thrift,ubf'

eunit-thrift: eunit-compile
@echo "eunit testing (thrift): $(RELPKG) ..."
./rebar eunit skip_apps='gdss_brick,gdss_client,gdss_admin,cluster_info,partition_detector,congestion_watcher,gmt_util,riak_err,meck,asciiedoc,edown'
./rebar eunit -r skip_apps='gdss_brick,gdss_client,gdss_admin,cluster_info,partition_detector,congestion_watcher,gmt_util,riak_err,meck,asciiedoc,edown'

eqc: eqc-compile
@echo "eqc testing: $(RELPKG) ... not implemented yet"
Expand Down

0 comments on commit 2fa5886

Please sign in to comment.