Commit 7c144312 authored by Victor Zverovich's avatar Victor Zverovich

Enable 'h' speciffier tests.

parent adbf3f8b
...@@ -337,13 +337,13 @@ TEST(PrintfTest, Length) { ...@@ -337,13 +337,13 @@ TEST(PrintfTest, Length) {
TestLength<char>("hh"); TestLength<char>("hh");
TestLength<signed char>("hh"); TestLength<signed char>("hh");
TestLength<unsigned char>("hh"); TestLength<unsigned char>("hh");
/*TestLength<short>("h"); TestLength<short>("h");
TestLength<unsigned short>("h"); TestLength<unsigned short>("h");
TestLength<long>("l"); //TestLength<long>("l");
TestLength<unsigned long>("l"); //TestLength<unsigned long>("l");
// TODO: more tests // TODO: more tests
EXPECT_EQ("-1", sprintf_int<unsigned char>("%hhd", UCHAR_MAX)); //EXPECT_EQ("-1", sprintf_int<unsigned char>("%hhd", UCHAR_MAX));
EXPECT_EQ("255", sprintf_int<unsigned char>("%hhu", UCHAR_MAX));*/ //EXPECT_EQ("255", sprintf_int<unsigned char>("%hhu", UCHAR_MAX));
} }
// TODO: test type specifier // TODO: test type specifier
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment