From b30f3377107035b792a95233c6ddc3c459d35b41 Mon Sep 17 00:00:00 2001 From: Michelle McDaniel Date: Wed, 12 Apr 2017 09:56:33 -0700 Subject: [PATCH] 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%. Commit migrated from https://github.com/dotnet/coreclr/commit/d2697c9b034e00c5183f3cd2f3a605fbc8a9b21c --- src/coreclr/tests/scripts/run-xunit-perf.cmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/coreclr/tests/scripts/run-xunit-perf.cmd b/src/coreclr/tests/scripts/run-xunit-perf.cmd index bad1f93..0d657c6 100644 --- a/src/coreclr/tests/scripts/run-xunit-perf.cmd +++ b/src/coreclr/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%] == [] ( -- 2.7.4