Skip to content
Snippets Groups Projects
Commit ba328d2e35a8 authored by Alanscut's avatar Alanscut
Browse files

update testcase, fixes #433

parent 8b121b387ef9
No related branches found
No related tags found
Loading
......@@ -64,6 +64,9 @@
TEST_ASSERT_TRUE(compare_from_string("1", "1", false));
TEST_ASSERT_TRUE(compare_from_string("0.0001", "0.0001", true));
TEST_ASSERT_TRUE(compare_from_string("0.0001", "0.0001", false));
TEST_ASSERT_TRUE(compare_from_string("1E100", "10E99", false));
TEST_ASSERT_FALSE(compare_from_string("0.5E-100", "0.5E-101", false));
TEST_ASSERT_FALSE(compare_from_string("1", "2", true));
TEST_ASSERT_FALSE(compare_from_string("1", "2", false));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment