Skip to content

Latest commit

 

History

History
35 lines (17 loc) · 722 Bytes

BUILDING.md

File metadata and controls

35 lines (17 loc) · 722 Bytes

Main Makefile targets

After the code was checked out (or when dependencies were updated):

make deps

To compile the code:

make

To run unit tests:

make test

To run integration tests:

make itest

Testing

The following is a command example for invoking particular unit test suite:

env ERL_AFLAGS='-config test/sys' rebar eunit skip_deps=true verbose=1 suites=eproc_fsm
env ERL_AFLAGS='-config test/sys' rebar eunit skip_deps=true verbose=1 suites=eproc_fsm tests=register_incoming_message

And this one is for particular integration test suite:

rebar compile ct skip_deps=true suites=eproc_store_ets