diff options
Diffstat (limited to 'doc/src/guide')
-rw-r--r-- | doc/src/guide/eunit.asciidoc | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/src/guide/eunit.asciidoc b/doc/src/guide/eunit.asciidoc index 0295726..591d4c6 100644 --- a/doc/src/guide/eunit.asciidoc +++ b/doc/src/guide/eunit.asciidoc @@ -59,6 +59,13 @@ At the time of writing, the only available option is `verbose`: [source,make] EUNIT_OPTS = verbose +The `EUNIT_ERL_OPTS` variable allows you to specify options +to be passed to `erl` when running EUnit tests. For example, +you can load the 'vm.args' and 'sys.config' files: + +[source,make] +EUNIT_ERL_OPTS = -args_file rel/vm.args -config rel/sys.config + === Usage To run all tests (including EUnit): |