summaryrefslogtreecommitdiff
path: root/tests/src/JIT/Performance/CodeQuality/Math/Functions/Single/SinhSingle.cs
diff options
context:
space:
mode:
authorTanner Gooding <tagoo@outlook.com>2017-02-05 23:46:56 +0000
committerTanner Gooding <tagoo@microsoft.com>2017-05-16 11:33:15 -0700
commitb8bee85eda03852a72921bc3bbea0f45d073a75d (patch)
treeb7fcaa5d8f04320dd81b855f0b9e644059231552 /tests/src/JIT/Performance/CodeQuality/Math/Functions/Single/SinhSingle.cs
parent1b7b588240445d77387988f4dcdb4e9462ef87a0 (diff)
downloadcoreclr-b8bee85eda03852a72921bc3bbea0f45d073a75d.tar.gz
coreclr-b8bee85eda03852a72921bc3bbea0f45d073a75d.tar.bz2
coreclr-b8bee85eda03852a72921bc3bbea0f45d073a75d.zip
JIT/Performance/CodeQuality/Math/Functions tests to use the appropriate precision when printing failure messages.
Diffstat (limited to 'tests/src/JIT/Performance/CodeQuality/Math/Functions/Single/SinhSingle.cs')
-rw-r--r--tests/src/JIT/Performance/CodeQuality/Math/Functions/Single/SinhSingle.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/src/JIT/Performance/CodeQuality/Math/Functions/Single/SinhSingle.cs b/tests/src/JIT/Performance/CodeQuality/Math/Functions/Single/SinhSingle.cs
index 8ed2cd54df..d1587fb4e2 100644
--- a/tests/src/JIT/Performance/CodeQuality/Math/Functions/Single/SinhSingle.cs
+++ b/tests/src/JIT/Performance/CodeQuality/Math/Functions/Single/SinhSingle.cs
@@ -40,7 +40,7 @@ namespace Functions
if (diff > singleEpsilon)
{
- throw new Exception($"Expected Result {sinhSingleExpectedResult}; Actual Result {result}");
+ throw new Exception($"Expected Result {sinhSingleExpectedResult,10:g9}; Actual Result {result,10:g9}");
}
}
}