summaryrefslogtreecommitdiff
path: root/src/pal/tests/palsuite/c_runtime
diff options
context:
space:
mode:
authorPeter Jas <necmon@yahoo.com>2016-06-19 21:37:06 +0300
committerJan Kotas <jkotas@microsoft.com>2016-06-19 11:37:06 -0700
commit5546991296f5e407cf6797a914092cf8317b0ec0 (patch)
tree46dc56203fc59d92f349aaf13f9f1c10db6ca879 /src/pal/tests/palsuite/c_runtime
parent734f9814f534b324a9268804371cf9da9245ec78 (diff)
downloadcoreclr-5546991296f5e407cf6797a914092cf8317b0ec0.tar.gz
coreclr-5546991296f5e407cf6797a914092cf8317b0ec0.tar.bz2
coreclr-5546991296f5e407cf6797a914092cf8317b0ec0.zip
Remove the corner cases from sscanf test (#5873)
Diffstat (limited to 'src/pal/tests/palsuite/c_runtime')
-rw-r--r--src/pal/tests/palsuite/c_runtime/sscanf/test14/test14.c1
-rw-r--r--src/pal/tests/palsuite/c_runtime/sscanf/test15/test15.c1
2 files changed, 0 insertions, 2 deletions
diff --git a/src/pal/tests/palsuite/c_runtime/sscanf/test14/test14.c b/src/pal/tests/palsuite/c_runtime/sscanf/test14/test14.c
index 8f759686c5..d1291a3b65 100644
--- a/src/pal/tests/palsuite/c_runtime/sscanf/test14/test14.c
+++ b/src/pal/tests/palsuite/c_runtime/sscanf/test14/test14.c
@@ -30,7 +30,6 @@ int __cdecl main(int argc, char *argv[])
DoFloatTest("+12.01e-2", "%e", 0.1201f);
DoFloatTest("-12.01e+2", "%e", -1201.0f);
DoFloatTest("+12.01e+2", "%e", 1201.0f);
- DoFloatTest("1234567890.0123456789e", "%e", 1234567936);
PAL_Terminate();
return PASS;
diff --git a/src/pal/tests/palsuite/c_runtime/sscanf/test15/test15.c b/src/pal/tests/palsuite/c_runtime/sscanf/test15/test15.c
index f8ac4ff888..fa51467d85 100644
--- a/src/pal/tests/palsuite/c_runtime/sscanf/test15/test15.c
+++ b/src/pal/tests/palsuite/c_runtime/sscanf/test15/test15.c
@@ -30,7 +30,6 @@ int __cdecl main(int argc, char *argv[])
DoFloatTest("+12.01e-2", "%E", 0.1201f);
DoFloatTest("-12.01e+2", "%E", -1201.0f);
DoFloatTest("+12.01e+2", "%E", 1201.0f);
- DoFloatTest("1234567890.0123456789E", "%E", 1234567936);
PAL_Terminate();
return PASS;