summaryrefslogtreecommitdiff
path: root/tests/src/JIT/Performance/CodeQuality
diff options
context:
space:
mode:
authorTanner Gooding <tagoo@outlook.com>2017-02-05 23:00:29 +0000
committerTanner Gooding <tagoo@microsoft.com>2017-05-16 11:33:14 -0700
commit1b7b588240445d77387988f4dcdb4e9462ef87a0 (patch)
treebf7719693a3902237902cbffeb5fdf8294f71321 /tests/src/JIT/Performance/CodeQuality
parent4807b9fc40a8d5644df9dd15e0f43bd307fab395 (diff)
downloadcoreclr-1b7b588240445d77387988f4dcdb4e9462ef87a0.tar.gz
coreclr-1b7b588240445d77387988f4dcdb4e9462ef87a0.tar.bz2
coreclr-1b7b588240445d77387988f4dcdb4e9462ef87a0.zip
Updating the JIT/Performance/CodeQuality/Math/Functions tests to target netcoreapp1.1 instead of netstandard1.4
Diffstat (limited to 'tests/src/JIT/Performance/CodeQuality')
-rw-r--r--tests/src/JIT/Performance/CodeQuality/Math/Functions/Functions.csproj6
-rw-r--r--tests/src/JIT/Performance/CodeQuality/Math/Functions/Single/AcosSingle.cs2
2 files changed, 2 insertions, 6 deletions
diff --git a/tests/src/JIT/Performance/CodeQuality/Math/Functions/Functions.csproj b/tests/src/JIT/Performance/CodeQuality/Math/Functions/Functions.csproj
index 7e788e356f..2545a585bb 100644
--- a/tests/src/JIT/Performance/CodeQuality/Math/Functions/Functions.csproj
+++ b/tests/src/JIT/Performance/CodeQuality/Math/Functions/Functions.csproj
@@ -9,7 +9,7 @@
<OutputType>Exe</OutputType>
<ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\</SolutionDir>
- <NuGetTargetMoniker>.NETStandard,Version=v1.4</NuGetTargetMoniker>
+ <NuGetTargetMoniker>.NETCoreApp,Version=v1.1</NuGetTargetMoniker>
</PropertyGroup>
<!-- Default configurations to help VS understand the configurations -->
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
@@ -70,10 +70,6 @@
<Compile Include="Single\TanSingle.cs" />
<Compile Include="Single\TanhSingle.cs" />
</ItemGroup>
- <PropertyGroup>
- <ProjectJson>$(JitPackagesConfigFileDirectory)benchmark\project.json</ProjectJson>
- <ProjectLockJson>$(JitPackagesConfigFileDirectory)benchmark\project.lock.json</ProjectLockJson>
- </PropertyGroup>
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
<PropertyGroup Condition=" '$(MsBuildProjectDirOverride)' != '' ">
</PropertyGroup>
diff --git a/tests/src/JIT/Performance/CodeQuality/Math/Functions/Single/AcosSingle.cs b/tests/src/JIT/Performance/CodeQuality/Math/Functions/Single/AcosSingle.cs
index 4be2d66b09..9dec8ab584 100644
--- a/tests/src/JIT/Performance/CodeQuality/Math/Functions/Single/AcosSingle.cs
+++ b/tests/src/JIT/Performance/CodeQuality/Math/Functions/Single/AcosSingle.cs
@@ -38,7 +38,7 @@ namespace Functions
var diff = MathF.Abs(acosSingleExpectedResult - result);
- if (diff > floatEpsilon)
+ if (diff > singleEpsilon)
{
throw new Exception($"Expected Result {acosSingleExpectedResult}; Actual Result {result}");
}