From 5546991296f5e407cf6797a914092cf8317b0ec0 Mon Sep 17 00:00:00 2001 From: Peter Jas Date: Sun, 19 Jun 2016 21:37:06 +0300 Subject: Remove the corner cases from sscanf test (#5873) --- src/pal/tests/palsuite/c_runtime/sscanf/test14/test14.c | 1 - src/pal/tests/palsuite/c_runtime/sscanf/test15/test15.c | 1 - 2 files changed, 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; -- cgit v1.2.3