Skip to content

Commit

Permalink
Exclude netcore50aot assemblies in runtests.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
sergiy-k committed Mar 13, 2016
1 parent d9b108e commit a32cea5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/runtest.sh
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ function create_core_overlay {
fi
mkdir "$coreOverlayDir"

(cd $coreFxBinDir && find . -iname '*.dll' \! -iwholename '*netstandard13aot*' \! -iwholename '*test*' \! -iwholename '*/ToolRuntime/*' \! -iwholename '*RemoteExecutorConsoleApp*' -exec cp -f '{}' "$coreOverlayDir/" \;)
(cd $coreFxBinDir && find . -iname '*.dll' \! -iwholename '*netstandard13aot*' \! -iwholename '*netcore50aot*' \! -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
Expand Down

0 comments on commit a32cea5

Please sign in to comment.