Skip to content

Commit 689d28c

Browse files
committed
typos
1 parent 1034489 commit 689d28c

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

docs/workflow/testing/testing-managed-tools.md

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
11
# Testing managed tools
22

3-
Managed unit and functional tests for a number of tools are included in the product including the
4-
compiler for NativeAOT, and the trimmer (illink)
3+
There are managed unit and functional tests for a number of tools including the
4+
compiler for NativeAOT (`ILCompiler`), and the trimmer (`illink`).
55

66
## Adding new testsuites
77

8-
To add new test suite, create a new `.csproj` with a name that ends in `Tests`, such as:
8+
To add a new test suite, create a new `.csproj` with a name that ends in `Tests`, such as:
99
`MyTool.Tests.csproj`. The property `IsTestProject` will be set by the `Directories.Build.props` in
1010
the repository root. The property will, in turn, add references to the xunit package and the
1111
apropriate test runner.
1212

13-
Now add a `ProjectToBuild` item to `eng/Substes.props` to one of the existing subsets such as
14-
`clr.toolstests` or add a new subset.
13+
Now add a `ProjectToBuild` item in `eng/Substes.props` to one of the existing subsets, such as
14+
`clr.toolstests`, or a new subset.
1515

1616
## Adding new testsuites to CI
1717

1818
To run the tests in CI, add a new pipeline or add to an exsiting pipeline such as `CLR_Tools_Tests`
1919
in `eng/pipelines/runtime.yml`. Update the trigger condition, perhaps by adding a new set of paths
2020
to `eng/pipelines/common/evaluate-default-paths.yml` in order to run the tests when the tool source
21-
or the test sources change./
21+
or the test sources change.
2222

2323
## Running tests locally
2424

@@ -41,6 +41,5 @@ The `dotnet-test` xunit filter mechanisms work to run a single test or a subset
4141
```
4242

4343
The above command runs all tests whose fully-qualified name contains the substring `MyTest`. See
44-
[dotnet test - Run selective unit
45-
test](https://learn.microsoft.com/en-us/dotnet/core/testing/selective-unit-tests?pivots=mstest#syntax)
44+
[dotnet test - Run selective unit tests](https://learn.microsoft.com/en-us/dotnet/core/testing/selective-unit-tests?pivots=mstest#syntax)
4645
for the full syntax.

0 commit comments

Comments
 (0)