Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update documentation for running tests #3055

Merged
merged 1 commit into from Dec 7, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.rst
Expand Up @@ -162,7 +162,7 @@ Linux

This will build and install the essential core components of HPX only. Use::

gmake tests
gmake tests && gmake test

to build and run the tests and::

Expand Down Expand Up @@ -218,7 +218,7 @@ OS X (Mac)

This will build and install the essential core components of HPX only. Use::

make tests
make tests && make test

to build and run the tests and::

Expand Down
2 changes: 1 addition & 1 deletion docs/manual/build_system/recipe_unix.qbk
Expand Up @@ -56,7 +56,7 @@
[important These commands will build and install the essential core components of
__hpx__ only. In order to build and run the tests, please invoke:
``
gmake tests
gmake tests && gmake test
``
and in order to build (and install) all examples invoke:
``
Expand Down
8 changes: 4 additions & 4 deletions docs/manual/testing.qbk
Expand Up @@ -17,10 +17,10 @@ on our __stellar_hpx_github_issues__ tracker with detailed information about the

[section:running_tests Running tests manually]

Running the tests manually is as easy as typing ``make tests``. This will build all tests and
run them once the tests are builtsuccessfully. After the tests have been built, you can
invoke separate tests with the help of the ``ctest`` command. Please see the __ctest_doc__ for
further details.
Running the tests manually is as easy as typing ``make tests && make test``. This will build
all tests and run them once the tests are built successfully. After the tests have been built,
you can invoke separate tests with the help of the ``ctest`` command. You can list all available
test targets using ``make help | grep tests``. Please see the __ctest_doc__ for further details.

[endsect]

Expand Down