modified makefile to run quickcheck tests. Usage: make eqc_db
This commit is contained in:
parent
8712049ed0
commit
8b0ca36483
1 changed files with 10 additions and 0 deletions
10
Makefile
10
Makefile
|
@ -42,9 +42,19 @@ run:
|
|||
-mnesia dir '"/tmp/ggs"' \
|
||||
-boot start_sasl \
|
||||
-pa $(LIBDIR)/erlv8/ebin/ \
|
||||
-pa $(LIBDIR)/eqc/ebin/ \
|
||||
-pa ebin \
|
||||
-pa src \
|
||||
-s start_ggs
|
||||
|
||||
eqc_db:
|
||||
$(ERLC) -pa $(BEAMDIR) -pa $(LIBDIR)/eqc/ebin -pa $(SRCDIR) -pa $(TESTDIR) $(TESTDIR)/ggs_db_eqc_test.erl
|
||||
erl -mnesia dir '"/tmp/ggs"' \
|
||||
-pa $(LIBDIR)/eqc/ebin/ \
|
||||
-pa ebin/ \
|
||||
-pa src/ \
|
||||
-pa tests/ \
|
||||
-s ggs_db_eqc_test
|
||||
|
||||
force_look:
|
||||
true
|
||||
|
|
Reference in a new issue