summaryrefslogtreecommitdiff
path: root/Documentation/project-docs
diff options
context:
space:
mode:
authorHan Lee <han.lee@intel.com>2019-03-15 07:43:28 -0700
committerStephen Toub <stoub@microsoft.com>2019-03-15 10:43:28 -0400
commit335df1f075f06653b01838c9e64e6ee31d5f60cf (patch)
tree99eca7914190166c5bd68fc17a6b9013a10c640e /Documentation/project-docs
parent68fad02f41707a5333992cd7701e75aefb4e51c8 (diff)
downloadcoreclr-335df1f075f06653b01838c9e64e6ee31d5f60cf.tar.gz
coreclr-335df1f075f06653b01838c9e64e6ee31d5f60cf.tar.bz2
coreclr-335df1f075f06653b01838c9e64e6ee31d5f60cf.zip
Update performance-guidelines.md (#23183)
so that it uses run-xunit-perf.py command. run-xunit-perf.cmd is no longer there.
Diffstat (limited to 'Documentation/project-docs')
-rw-r--r--Documentation/project-docs/performance-guidelines.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/project-docs/performance-guidelines.md b/Documentation/project-docs/performance-guidelines.md
index a2e15d5e01..ecad6fb981 100644
--- a/Documentation/project-docs/performance-guidelines.md
+++ b/Documentation/project-docs/performance-guidelines.md
@@ -55,7 +55,7 @@ PerfView is available at the [Microsoft Download Center](http://www.microsoft.co
2. After building the runtime you will need to generate a core root that contains all of the binaries we just built along with the required dependencies. This can be done with the command `tests\runtest.cmd Release x64 GenerateLayoutOnly`, with the same caveat that x86 should be used if that is the platform that you are testing.
-3. Now we need to actually run the performance tests. You can do that with the following command that should be run from the root of your repo `tests\scripts\run-xunit-perf.cmd -arch x64 -configuration Release -testBinLoc bin\tests\Windows_NT.x64.Release\Jit\Performance\CodeQuality`. This will run all of the tests in the JIT CodeQuality directory as the script will walk all sub-directories and look for tests to run. If you want to just run a single test, pass the path of the single test that you want to run.
+3. Now we need to actually run the performance tests. You can do that with the following command that should be run from the root of your repo `python tests\scripts\run-xunit-perf.py -arch x64 -configuration Release -testBinLoc bin\tests\Windows_NT.x64.Release\Jit\Performance\CodeQuality`. This will run all of the tests in the JIT CodeQuality directory as the script will walk all sub-directories and look for tests to run. If you want to just run a single test, pass the path of the single test that you want to run.
4. Navigate to the `sandbox` directory in the root of your repo. Inside that directory you will find a bunch of files that follow the name Perf-*.md. These will contain the results, formatted as Markdown files, for each test that was run.