diff options
author | Smile Wei <xiwe@microsoft.com> | 2016-08-29 16:34:59 -0700 |
---|---|---|
committer | Smile Wei <xiwe@microsoft.com> | 2016-08-29 16:34:59 -0700 |
commit | e3ed1aa01488186436765d5719823b3566bc6130 (patch) | |
tree | f8711176ecb695e9c6ef8f9d9e3b9d7e540feddc /tests/scripts | |
parent | 0ed1e5143d298f2e568c974b0b49d5e6990084b2 (diff) | |
download | coreclr-e3ed1aa01488186436765d5719823b3566bc6130.tar.gz coreclr-e3ed1aa01488186436765d5719823b3566bc6130.tar.bz2 coreclr-e3ed1aa01488186436765d5719823b3566bc6130.zip |
Add debugging code to find where Microsoft.DotNet.xunit.performance.runner.cli.dll is deployed.
Diffstat (limited to 'tests/scripts')
-rw-r--r-- | tests/scripts/run-xunit-perf.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/scripts/run-xunit-perf.sh b/tests/scripts/run-xunit-perf.sh index 7be8949664..20cae86738 100644 --- a/tests/scripts/run-xunit-perf.sh +++ b/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 |