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

docs: update of Makefile target #8669

Merged
merged 1 commit into from
Jul 7, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/dev/how-to-write-and-run-tests.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,11 @@ To run a single test you can use:

* for unit test:
```bash
make unit-test test="filename.t"
make test-unit test="filename.t"
```
* for integration test:
```bash
make int-test test="filename.t"
make test-int test="filename.t"
```

If you made change that impact stored expected results, you can use:
Expand All @@ -86,9 +86,9 @@ If you made change that impact stored expected results, you can use:
make update_tests_results
```
* or to generate expected results for a single test
(here for integration test, `unit-test` otherwise)
(here for integration test, `test-unit` otherwise)
```bash
make int-test="filename.t --update-expected results"
make test-int="filename.t --update-expected results"
```

If you re-generate test results, be sure to look carefully that the changes your commit are expected changes.
Expand Down