Skip to content
This repository has been archived by the owner on Jan 23, 2023. It is now read-only.

Commit

Permalink
Remove the corner cases from sscanf test (#5873)
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter Jas authored and jkotas committed Jun 19, 2016
1 parent 734f981 commit 5546991
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/pal/tests/palsuite/c_runtime/sscanf/test14/test14.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
1 change: 0 additions & 1 deletion src/pal/tests/palsuite/c_runtime/sscanf/test15/test15.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 5546991

Please sign in to comment.