Merge "Add a unit test for already-fixed printf -0.0 formatting."

This commit is contained in:
Elliott Hughes 2014-05-14 20:11:22 +00:00 committed by Gerrit Code Review
commit fbd9dcadc8
1 changed files with 7 additions and 0 deletions

View File

@ -400,6 +400,13 @@ TEST(stdio, snprintf_e) {
EXPECT_STREQ("1.500000e+00", buf);
}
TEST(stdio, snprintf_negative_zero_5084292) {
char buf[BUFSIZ];
snprintf(buf, sizeof(buf), "%f", -0.0);
EXPECT_STREQ("-0.000000", buf);
}
TEST(stdio, popen) {
FILE* fp = popen("cat /proc/version", "r");
ASSERT_TRUE(fp != NULL);