diff options
author | Loïc Hoguin <[email protected]> | 2018-11-26 23:46:31 +0100 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2018-11-26 23:46:31 +0100 |
commit | f07636e66759ecdaff4ee4e9097ecbf88eb6b217 (patch) | |
tree | f3dea02e4a3d0bc9f77ff83d4381eb2a4358e816 /doc/src | |
parent | 2277830e3f2b5b8c71438c6c7f991037d04949ba (diff) | |
download | erlang.mk-f07636e66759ecdaff4ee4e9097ecbf88eb6b217.tar.gz erlang.mk-f07636e66759ecdaff4ee4e9097ecbf88eb6b217.tar.bz2 erlang.mk-f07636e66759ecdaff4ee4e9097ecbf88eb6b217.zip |
Allow running test cases without groups in CT
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/guide/common_test.asciidoc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/src/guide/common_test.asciidoc b/doc/src/guide/common_test.asciidoc index f8f0de3..993bb8c 100644 --- a/doc/src/guide/common_test.asciidoc +++ b/doc/src/guide/common_test.asciidoc @@ -93,5 +93,11 @@ as a dependency, you can run the following directly: [source,bash] $ make -C deps/cowboy ct-http t=http_compress +The variable `c` can be used to run a specific test when +the test suite does not group test cases: + +[source,bash] +$ make ct-http c=headers_dupe + Finally, xref:coverage[code coverage] is available, but covered in its own chapter. |