diff options
author | Michelle McDaniel <adiaaida@gmail.com> | 2017-04-12 09:56:33 -0700 |
---|---|---|
committer | Michelle McDaniel <adiaaida@gmail.com> | 2017-04-12 09:56:33 -0700 |
commit | d2697c9b034e00c5183f3cd2f3a605fbc8a9b21c (patch) | |
tree | 0967655fad96b87094369a57378d9dfa1aa00e01 | |
parent | 0b6bbb0a54bb2afa32d9296a7dc12d51cfdbd91f (diff) | |
download | coreclr-d2697c9b034e00c5183f3cd2f3a605fbc8a9b21c.tar.gz coreclr-d2697c9b034e00c5183f3cd2f3a605fbc8a9b21c.tar.bz2 coreclr-d2697c9b034e00c5183f3cd2f3a605fbc8a9b21c.zip |
Fix run-xunit-perf.cmd for local use
run-xunit-perf.cmd specifies the full path to the benchmark using
%WORKSPACE%, which a user may not set locally. This change modifies it to
use %CORECLR_ROOT%.
-rw-r--r-- | tests/scripts/run-xunit-perf.cmd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/scripts/run-xunit-perf.cmd b/tests/scripts/run-xunit-perf.cmd index bad1f93a40..0d657c6e9e 100644 --- a/tests/scripts/run-xunit-perf.cmd +++ b/tests/scripts/run-xunit-perf.cmd @@ -94,7 +94,7 @@ if DEFINED TEST_ENV ( ) ) -corerun.exe PerfHarness.dll %WORKSPACE%\sandbox\%BENCHNAME%.%TEST_FILE_EXT% --perf:runid Perf > %BENCHNAME%.out +corerun.exe PerfHarness.dll %CORECLR_REPO%\sandbox\%BENCHNAME%.%TEST_FILE_EXT% --perf:runid Perf > %BENCHNAME%.out @rem optionally generate results for benchview if not [%BENCHVIEW_PATH%] == [] ( |