summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorSergiy Kuryata <sergeyk@microsoft.com>2016-03-11 18:17:15 -0800
committerSergiy Kuryata <sergeyk@microsoft.com>2016-03-11 18:17:15 -0800
commit78f9f73e094e35e57afa7c1e3e899e841474ccf2 (patch)
treec05c930c72907098c3a9b52fd611122dab8a2bc1 /tests
parent6f3e349b80f713d902e0d47eac1948f6c6a4296d (diff)
downloadcoreclr-78f9f73e094e35e57afa7c1e3e899e841474ccf2.tar.gz
coreclr-78f9f73e094e35e57afa7c1e3e899e841474ccf2.tar.bz2
coreclr-78f9f73e094e35e57afa7c1e3e899e841474ccf2.zip
Patch the runtests.sh script to work around an issue with corefx assemblies
Change https://github.com/dotnet/corefx/pull/6779 in CoreFx added corert assemblies to the mix of assemblies that are built for CoreCLR on Unix which broke the logic in runtest.sh that creates an overlay for running tests. This change creates a work around for the problem.
Diffstat (limited to 'tests')
-rwxr-xr-xtests/runtest.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runtest.sh b/tests/runtest.sh
index 2366da20ed..2830d74c12 100755
--- a/tests/runtest.sh
+++ b/tests/runtest.sh
@@ -339,7 +339,7 @@ function create_core_overlay {
fi
mkdir "$coreOverlayDir"
- (cd $coreFxBinDir && find . -iname '*.dll' \! -iwholename '*test*' \! -iwholename '*/ToolRuntime/*' \! -iwholename '*RemoteExecutorConsoleApp*' -exec cp -f '{}' "$coreOverlayDir/" \;)
+ (cd $coreFxBinDir && find . -iname '*.dll' \! -iwholename '*netstandard13aot*' \! -iwholename '*test*' \! -iwholename '*/ToolRuntime/*' \! -iwholename '*RemoteExecutorConsoleApp*' -exec cp -f '{}' "$coreOverlayDir/" \;)
cp -f "$coreFxNativeBinDir/Native/"*."$libExtension" "$coreOverlayDir/" 2>/dev/null
cp -f "$coreClrBinDir/"* "$coreOverlayDir/" 2>/dev/null