| Index: third_party/WebKit/Source/wtf/AssertionsTest.cpp
|
| diff --git a/third_party/WebKit/Source/wtf/AssertionsTest.cpp b/third_party/WebKit/Source/wtf/AssertionsTest.cpp
|
| index 46c17d55ae0b0a460bb1308c4f01b7a80e66ab9b..6c04724308c1351f66b01bcb3b53ea504b237b54 100644
|
| --- a/third_party/WebKit/Source/wtf/AssertionsTest.cpp
|
| +++ b/third_party/WebKit/Source/wtf/AssertionsTest.cpp
|
| @@ -16,46 +16,39 @@ static const int kPrinterBufferSize = 256;
|
| static char gBuffer[kPrinterBufferSize];
|
| static StringBuilder gBuilder;
|
|
|
| -static void vprint(const char* format, va_list args)
|
| -{
|
| - int written = vsnprintf(gBuffer, kPrinterBufferSize, format, args);
|
| - if (written > 0 && written < kPrinterBufferSize)
|
| - gBuilder.append(gBuffer);
|
| +static void vprint(const char* format, va_list args) {
|
| + int written = vsnprintf(gBuffer, kPrinterBufferSize, format, args);
|
| + if (written > 0 && written < kPrinterBufferSize)
|
| + gBuilder.append(gBuffer);
|
| }
|
|
|
| class AssertionsTest : public testing::Test {
|
| -protected:
|
| - AssertionsTest()
|
| - {
|
| - ScopedLogger::setPrintFuncForTests(vprint);
|
| - }
|
| + protected:
|
| + AssertionsTest() { ScopedLogger::setPrintFuncForTests(vprint); }
|
| };
|
|
|
| -TEST_F(AssertionsTest, ScopedLogger)
|
| -{
|
| +TEST_F(AssertionsTest, ScopedLogger) {
|
| + {
|
| + WTF_CREATE_SCOPED_LOGGER(a, "a1");
|
| {
|
| - WTF_CREATE_SCOPED_LOGGER(a, "a1");
|
| - {
|
| - WTF_CREATE_SCOPED_LOGGER_IF(b, false, "b1");
|
| - {
|
| - WTF_CREATE_SCOPED_LOGGER(c, "c");
|
| - {
|
| - WTF_CREATE_SCOPED_LOGGER(d, "d %d %s", -1, "hello");
|
| - }
|
| - }
|
| - WTF_APPEND_SCOPED_LOGGER(b, "b2");
|
| - }
|
| - WTF_APPEND_SCOPED_LOGGER(a, "a2 %.1f", 0.5);
|
| + WTF_CREATE_SCOPED_LOGGER_IF(b, false, "b1");
|
| + {
|
| + WTF_CREATE_SCOPED_LOGGER(c, "c");
|
| + { WTF_CREATE_SCOPED_LOGGER(d, "d %d %s", -1, "hello"); }
|
| + }
|
| + WTF_APPEND_SCOPED_LOGGER(b, "b2");
|
| }
|
| -
|
| - EXPECT_EQ(
|
| - "( a1\n"
|
| - " ( c\n"
|
| - " ( d -1 hello )\n"
|
| - " )\n"
|
| - " a2 0.5\n"
|
| - ")\n", gBuilder.toString());
|
| + WTF_APPEND_SCOPED_LOGGER(a, "a2 %.1f", 0.5);
|
| + }
|
| +
|
| + EXPECT_EQ(
|
| + "( a1\n"
|
| + " ( c\n"
|
| + " ( d -1 hello )\n"
|
| + " )\n"
|
| + " a2 0.5\n"
|
| + ")\n",
|
| + gBuilder.toString());
|
| };
|
|
|
| -
|
| -} // namespace WTF
|
| +} // namespace WTF
|
|
|