Use -f instead of -n when copying from Core_Root in runtest.sh
authorwtgodbe <wigodbe@microsoft.com>
Thu, 23 Feb 2017 22:29:41 +0000 (14:29 -0800)
committerwtgodbe <wigodbe@microsoft.com>
Thu, 23 Feb 2017 23:30:09 +0000 (15:30 -0800)
Commit migrated from https://github.com/dotnet/coreclr/commit/3eab59fc71cf9fc99f0d555d41974e310465c54b

src/coreclr/tests/runtest.sh
src/coreclr/tests/src/dirs.proj

index 9b83718..ee2b3b9 100755 (executable)
@@ -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"
index 4d85366..5314c27 100644 (file)
@@ -26,8 +26,6 @@
       <DisabledProjects Include="JIT\superpmi\superpmicollect.csproj" Condition="'$(BuildTestsAgainstPackages)' == 'true'" />
       <DisabledProjects Include="Loader\classloader\generics\regressions\DD117522\Test.csproj" />
       <DisabledProjects Include="Loader\classloader\generics\GenericMethods\VSW491668.csproj" /> <!-- issue 5501 -->
-      <DisabledProjects Include="JIT\Performance\CodeQuality\Serialization\Deserialize.csproj" /> <!-- issue 9733 -->
-      <DisabledProjects Include="JIT\Performance\CodeQuality\Serialization\Serialize.csproj" /> <!-- issue 9733 -->
     </ItemGroup>
     
     <ItemGroup>