From 27714405f144ec6c6dc37aad9a87d406bb5ee615 Mon Sep 17 00:00:00 2001 From: Smile Wei Date: Mon, 29 Aug 2016 15:09:25 -0700 Subject: [PATCH] Fixed wrong dir. Commit migrated from https://github.com/dotnet/coreclr/commit/a52e4fdca49b81072893d45982b314116abd7b50 --- src/coreclr/tests/scripts/run-xunit-perf.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/coreclr/tests/scripts/run-xunit-perf.sh b/src/coreclr/tests/scripts/run-xunit-perf.sh index 14986dd..68f14e4 100644 --- a/src/coreclr/tests/scripts/run-xunit-perf.sh +++ b/src/coreclr/tests/scripts/run-xunit-perf.sh @@ -378,13 +378,13 @@ DO_SETUP=TRUE if [ ${DO_SETUP} == "TRUE" ]; then -cp /home/ddcloud/git/coreclr/packages/Microsoft.DotNet.xunit.performance.runner.cli/1.0.0-alpha-build0035/lib/netstandard1.3/Microsoft.DotNet.xunit.performance.runner.cli.dll . +sudo cp $testNativeBinDir/../../../../packages/Microsoft.DotNet.xunit.performance.runner.cli/1.0.0-alpha-build0035/lib/netstandard1.3/Microsoft.DotNet.xunit.performance.runner.cli.dll . -cp /home/ddcloud/git/coreclr/packages/Microsoft.DotNet.xunit.performance.run.core/1.0.0-alpha-build0035/lib/dotnet/*.dll . +sudo cp $testNativeBinDir/../../../../packages/Microsoft.DotNet.xunit.performance.run.core/1.0.0-alpha-build0035/lib/dotnet/*.dll . fi -tests=($(find ~/test/Windows_NT.x64.Release/JIT/Performance/CodeQuality -name '*.exe')) +tests=($(find $testRootDir/JIT/Performance/CodeQuality -name '*.exe')) for testcase in ${tests[@]}; do -- 2.7.4