From a19e82fe9e7ae44136ce7eee5892de7471533d6b Mon Sep 17 00:00:00 2001 From: Sergiy Kuryata Date: Tue, 24 May 2016 19:41:58 -0700 Subject: [PATCH] Update runtests.sh to accommodate a change in CoreFX that broke creation of CoreOverlay on Unix platforms --- tests/runtest.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/runtest.sh b/tests/runtest.sh index a40e554..6c3d6a6 100755 --- a/tests/runtest.sh +++ b/tests/runtest.sh @@ -356,7 +356,7 @@ function create_core_overlay { exit_with_error "$errorSource" "Directory specified in --coreFxBinDir does not exist: $currDir" fi - (cd $currDir && find . -iname '*.dll' \! -iwholename '*test*' \! -iwholename '*/ToolRuntime/*' \! -iwholename '*/RemoteExecutorConsoleApp/*' \! -iwholename '*/net*' \! -iwholename '*aot*' -exec cp -n '{}' "$coreOverlayDir/" \;) + (cd $currDir && find . -iwholename '*/netstandard/*.dll' \! -iwholename '*test*' \! -iwholename '*/ToolRuntime/*' \! -iwholename '*/RemoteExecutorConsoleApp/*' \! -iwholename '*aot*' -exec cp -n '{}' "$coreOverlayDir/" \;) done done <<< $coreFxBinDir -- 2.7.4