| Index: third_party/WebKit/Source/wtf/text/StringConcatenateTest.cpp
|
| diff --git a/third_party/WebKit/Source/wtf/text/StringOperatorsTest.cpp b/third_party/WebKit/Source/wtf/text/StringConcatenateTest.cpp
|
| similarity index 98%
|
| rename from third_party/WebKit/Source/wtf/text/StringOperatorsTest.cpp
|
| rename to third_party/WebKit/Source/wtf/text/StringConcatenateTest.cpp
|
| index 788f21f5b0c94ed15eec79bcd28cc0d140102125..0893117493f539239c70198002de1ddc5a505f7a 100644
|
| --- a/third_party/WebKit/Source/wtf/text/StringOperatorsTest.cpp
|
| +++ b/third_party/WebKit/Source/wtf/text/StringConcatenateTest.cpp
|
| @@ -35,12 +35,13 @@ namespace WTF {
|
| #define EXPECT_N_WTF_STRING_COPIES(count, expr) \
|
| do { \
|
| wtfStringCopyCount = 0; \
|
| - String __testString = expr; \
|
| - (void)__testString; \
|
| + String testString = expr; \
|
| + (void)testString; \
|
| EXPECT_EQ(count, wtfStringCopyCount) << #expr; \
|
| } while (false)
|
|
|
| -TEST(StringOperatorsTest, DISABLED_StringOperators)
|
| +// TODO(esprehn): Fix or delete this test.
|
| +TEST(StringConcatenateTest, DISABLED_StringCopies)
|
| {
|
| String string("String");
|
| AtomicString atomicString("AtomicString");
|
|
|