Note that tests don't have to be built to view JIT dumps (dotnet/coreclr#12699)
authorPetr Onderka <gsvick@gmail.com>
Sun, 9 Jul 2017 18:22:58 +0000 (20:22 +0200)
committerJan Kotas <jkotas@microsoft.com>
Sun, 9 Jul 2017 18:22:58 +0000 (20:22 +0200)
Commit migrated from https://github.com/dotnet/coreclr/commit/1f57f54b9f79a356476df9ba7a043ea967980ca4

docs/coreclr/building/viewing-jit-dumps.md

index be5f406..b16b431 100644 (file)
@@ -8,7 +8,7 @@ To make sense of the results, it is recommended you also read the [Reading a Jit
 
 The first thing we want to do is setup the .NET Core app we want to dump. Here are the steps to do this, if you don't have one ready:
 
-* Perform a debug build of the CoreCLR repo.
+* Perform a debug build of the CoreCLR repo. You don't need to build tests, so you can pass `skiptests` to the build command to make it faster.
 * Install the [.NET CLI 2.0 preview](https://github.com/dotnet/corefx/blob/master/Documentation/project-docs/dogfooding.md), which we'll use to compile/publish our app.
 * `cd` to where you want your app to be placed, and run `dotnet new console`.
 * Modify your `csproj` file so that it contains a RID (runtime ID) corresponding to the OS you're using in the `<RuntimeIdentifier>` tag. For example, for Windows 10 x64 machine, the project file is: