From 105b706df1e9fc7799f3aa9415849dec5c59ab23 Mon Sep 17 00:00:00 2001 From: Smile Wei Date: Mon, 29 Aug 2016 16:34:59 -0700 Subject: [PATCH] Add debugging code to find where Microsoft.DotNet.xunit.performance.runner.cli.dll is deployed. Commit migrated from https://github.com/dotnet/coreclr/commit/e3ed1aa01488186436765d5719823b3566bc6130 --- src/coreclr/tests/scripts/run-xunit-perf.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/coreclr/tests/scripts/run-xunit-perf.sh b/src/coreclr/tests/scripts/run-xunit-perf.sh index 7be8949..20cae86 100644 --- a/src/coreclr/tests/scripts/run-xunit-perf.sh +++ b/src/coreclr/tests/scripts/run-xunit-perf.sh @@ -382,6 +382,11 @@ create_core_overlay precompile_overlay_assemblies copy_test_native_bin_to_test_root +echo "find $testNativeBinDir/../../../../../../ -name 'Microsoft.DotNet.xunit.performance.runner.cli.dll'" +find $testNativeBinDir/../../../../../../ -name 'Microsoft.DotNet.xunit.performance.runner.cli.dll' +echo "find $testNativeBinDir/../../../../../ -name 'Microsoft.DotNet.xunit.performance.runner.cli.dll'" +find $testNativeBinDir/../../../../../ -name 'Microsoft.DotNet.xunit.performance.runner.cli.dll' + # Deploy xunit performance packages cd $CORE_ROOT -- 2.7.4