From: Sergiy Kuryata Date: Wed, 25 May 2016 02:41:58 +0000 (-0700) Subject: Update runtests.sh to accommodate a change in CoreFX that broke creation of CoreOverl... X-Git-Tag: accepted/tizen/base/20180629.140029~4549^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a19e82fe9e7ae44136ce7eee5892de7471533d6b;p=platform%2Fupstream%2Fcoreclr.git Update runtests.sh to accommodate a change in CoreFX that broke creation of CoreOverlay on Unix platforms --- 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