summaryrefslogtreecommitdiff
path: root/tests/runtest.sh
diff options
context:
space:
mode:
authorwtgodbe <wigodbe@microsoft.com>2017-02-23 14:29:41 -0800
committerwtgodbe <wigodbe@microsoft.com>2017-02-23 15:30:09 -0800
commit3eab59fc71cf9fc99f0d555d41974e310465c54b (patch)
tree84bca1a0a8130288e5178ee99256098ed21de7d8 /tests/runtest.sh
parent0abb98f1dc88845c82722bd48b4127ed1c728534 (diff)
downloadcoreclr-3eab59fc71cf9fc99f0d555d41974e310465c54b.tar.gz
coreclr-3eab59fc71cf9fc99f0d555d41974e310465c54b.tar.bz2
coreclr-3eab59fc71cf9fc99f0d555d41974e310465c54b.zip
Use -f instead of -n when copying from Core_Root in runtest.sh
Diffstat (limited to 'tests/runtest.sh')
-rwxr-xr-xtests/runtest.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/runtest.sh b/tests/runtest.sh
index 9b837182ed..ee2b3b9674 100755
--- a/tests/runtest.sh
+++ b/tests/runtest.sh
@@ -368,7 +368,8 @@ function create_core_overlay {
if [ -d "$mscorlibDir/bin" ]; then
cp -f -v "$mscorlibDir/bin/"* "$coreOverlayDir/" 2>/dev/null
fi
- cp -n -v "$testDependenciesDir"/* "$coreOverlayDir/" 2>/dev/null
+ cp -f -v "$testDependenciesDir/"xunit* "$coreOverlayDir/" 2>/dev/null
+ cp -n -v "$testDependenciesDir/"* "$coreOverlayDir/" 2>/dev/null
if [ -f "$coreOverlayDir/mscorlib.ni.dll" ]; then
# Test dependencies come from a Windows build, and mscorlib.ni.dll would be the one from Windows
rm -f "$coreOverlayDir/mscorlib.ni.dll"