You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/coreclr/tools/ILVerify/README.md
+15-5
Original file line number
Diff line number
Diff line change
@@ -48,24 +48,34 @@ The test project itself is under [src/tests/ilverify](../../../tests/ilverify)
48
48
49
49
General instructions to build this library can be found [here](https://github.com/dotnet/runtime/blob/main/docs/workflow/testing/coreclr/testing.md).
50
50
51
-
As the test project is marked with priority=1, simply building the test projects from the root of the project is not enough. For the initial build of priority=1 in release mode, run the following:
51
+
As quick snippet which should be enough to build CoreCLR
52
+
```
53
+
./build.cmd -s clr+libs -c release
54
+
```
52
55
53
-
```sh
54
-
src/tests/build.(cmd/sh) release -priority=1
56
+
As the test project is marked with priority=1, simply building the test projects from the root of the project is not enough. Run the following to build ilverify tests:
57
+
58
+
```shell
59
+
src/tests/build.(cmd/sh) release tree ilverify
55
60
```
56
61
57
62
It is important to not attempt to build the test project using `dotnet build` or `dotnet test`, as this will invalidate the state of the build and requires a full rebuild of both (see this [issue](https://github.com/dotnet/runtime/issues/43967)).
58
63
59
64
To incrementally build the ILVerify tests in isolation, run the following:
0 commit comments