diff options
author | Loïc Hoguin <[email protected]> | 2013-08-31 11:52:16 +0200 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2013-08-31 11:52:16 +0200 |
commit | 6b42bd74b64ca157458aec78cb59f31c627bd350 (patch) | |
tree | 33c94b0dae031441db30c45fd9144b6d832ebc6d /README.md | |
parent | 253d8ac3abe6255f4bd809d746f9248c3cf06e12 (diff) | |
download | erlang.mk-6b42bd74b64ca157458aec78cb59f31c627bd350.tar.gz erlang.mk-6b42bd74b64ca157458aec78cb59f31c627bd350.tar.bz2 erlang.mk-6b42bd74b64ca157458aec78cb59f31c627bd350.zip |
Add targets for individual test suites
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -104,7 +104,8 @@ The following targets are defined: | `clean-deps` | Clean the dependencies | | `docs` | Generate the Edoc documentation | | `clean-docs` | Clean the Edoc documentation | -| `tests` | Run the common_test suites | +| `test_*` | Run the common_test suite `*` | +| `tests` | Run all the common_test suites | | `build-plt` | Generate the PLT needed by Dialyzer | | `dialyze` | Run Dialyzer on the application | | `pkg-list` | List packages in the index | @@ -116,6 +117,11 @@ Dependencies are fetched as soon as a command involving them is invoked. This means that most of the targets will trigger a dependency fetch. It is only done once per dependency. +You can run an individual test suite by using the special `test_*` +targets. For example if you have a common_test suite named `spdy` +and you want to run only this suite and not the others, you can +use the `make test_spdy` command. + The default target when calling `make` is `all`. You can combine targets to perform many operations. For example, the |