summaryrefslogtreecommitdiff
path: root/tests/src/JIT
diff options
context:
space:
mode:
authordotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>2019-05-09 04:51:41 -0700
committerJan Kotas <jkotas@microsoft.com>2019-05-09 04:51:41 -0700
commit201a6ea6b12b0906f303f37c2339127c05ecc3a3 (patch)
treea249770aa81cb993fad329f955c13bcbd3435a0e /tests/src/JIT
parentaa494182a1b005674619c0177f238840812db6cd (diff)
downloadcoreclr-201a6ea6b12b0906f303f37c2339127c05ecc3a3.tar.gz
coreclr-201a6ea6b12b0906f303f37c2339127c05ecc3a3.tar.bz2
coreclr-201a6ea6b12b0906f303f37c2339127c05ecc3a3.zip
[master] Update dependencies from dotnet/corefx (#24314)
* Update dependencies from https://github.com/dotnet/corefx build 20190506.1 - Microsoft.NETCore.Platforms - 3.0.0-preview6.19256.1 - Microsoft.Private.CoreFx.NETCoreApp - 4.6.0-preview6.19256.1 * Use last stable version of System.Numerics.Vectors package * Add Microsoft.Bcl.AsyncInterfaces package * Disable Microsoft.Bcl.AsyncInterfaces
Diffstat (limited to 'tests/src/JIT')
-rw-r--r--tests/src/JIT/SIMD/VectorCopyToArray.cs2
-rw-r--r--tests/src/JIT/config/benchmark/benchmark.csproj2
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/src/JIT/SIMD/VectorCopyToArray.cs b/tests/src/JIT/SIMD/VectorCopyToArray.cs
index 3a931fb5bb..9d4eea501d 100644
--- a/tests/src/JIT/SIMD/VectorCopyToArray.cs
+++ b/tests/src/JIT/SIMD/VectorCopyToArray.cs
@@ -39,7 +39,7 @@ internal partial class VectorTest
caught = false;
try
{
- v1.CopyTo(null);
+ v1.CopyTo((T[])null);
}
catch (NullReferenceException)
{
diff --git a/tests/src/JIT/config/benchmark/benchmark.csproj b/tests/src/JIT/config/benchmark/benchmark.csproj
index 15099d74d4..50a90458d4 100644
--- a/tests/src/JIT/config/benchmark/benchmark.csproj
+++ b/tests/src/JIT/config/benchmark/benchmark.csproj
@@ -47,7 +47,7 @@
<Version>4.5.2</Version>
</PackageReference>
<PackageReference Include="System.Numerics.Vectors">
- <Version>$(MicrosoftPrivateCoreFxNETCoreAppVersion)</Version>
+ <Version>4.5.0</Version>
</PackageReference>
<PackageReference Include="System.Reflection">
<Version>4.4.0-beta-24913-02</Version>