Update runtests.sh to accommodate a change in CoreFX that broke creation of CoreOverl...
authorSergiy Kuryata <sergeyk@microsoft.com>
Wed, 25 May 2016 02:41:58 +0000 (19:41 -0700)
committerSergiy Kuryata <sergeyk@microsoft.com>
Wed, 25 May 2016 02:41:58 +0000 (19:41 -0700)
tests/runtest.sh

index a40e554..6c3d6a6 100755 (executable)
@@ -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