Chromium Code Reviews| Index: chrome/renderer/extensions/json_schema_unittest.cc |
| =================================================================== |
| --- chrome/renderer/extensions/json_schema_unittest.cc (revision 27125) |
| +++ chrome/renderer/extensions/json_schema_unittest.cc (working copy) |
| @@ -48,47 +48,49 @@ |
| } |
| }; |
| -TEST_F(JsonSchemaTest, TestFormatError) { |
| +// TODO: Re-enable this test! http://crbug.com/22971 |
| +#if 0 |
|
Erik does not do reviews
2009/09/24 23:10:00
drive-by: why use #if 0 if you added DISABLED_ to
jorlow
2009/09/24 23:11:55
The #if 0 was necessary because it crashed (not ju
|
| +TEST_F(JsonSchemaTest, DISABLED_TestFormatError) { |
| TestFunction("testFormatError"); |
| } |
| -TEST_F(JsonSchemaTest, TestComplex) { |
| +TEST_F(JsonSchemaTest, DISABLED_TestComplex) { |
| TestFunction("testComplex"); |
| } |
| -TEST_F(JsonSchemaTest, TestEnum) { |
| +TEST_F(JsonSchemaTest, DISABLED_TestEnum) { |
| TestFunction("testEnum"); |
| } |
| -TEST_F(JsonSchemaTest, TestExtends) { |
| +TEST_F(JsonSchemaTest, DISABLED_TestExtends) { |
| TestFunction("testExtends"); |
| } |
| -TEST_F(JsonSchemaTest, TestObject) { |
| +TEST_F(JsonSchemaTest, DISABLED_TestObject) { |
| TestFunction("testObject"); |
| } |
| -TEST_F(JsonSchemaTest, TestArrayTuple) { |
| +TEST_F(JsonSchemaTest, DISABLED_TestArrayTuple) { |
| TestFunction("testArrayTuple"); |
| } |
| -TEST_F(JsonSchemaTest, TestArrayNonTuple) { |
| +TEST_F(JsonSchemaTest, DISABLED_TestArrayNonTuple) { |
| TestFunction("testArrayNonTuple"); |
| } |
| -TEST_F(JsonSchemaTest, TestString) { |
| +TEST_F(JsonSchemaTest, DISABLED_TestString) { |
| TestFunction("testString"); |
| } |
| -TEST_F(JsonSchemaTest, TestNumber) { |
| +TEST_F(JsonSchemaTest, DISABLED_TestNumber) { |
| TestFunction("testNumber"); |
| } |
| -TEST_F(JsonSchemaTest, TestType) { |
| +TEST_F(JsonSchemaTest, DISABLED_TestType) { |
| TestFunction("testType"); |
| } |
| -TEST_F(JsonSchemaTest, TestTypeReference) { |
| +TEST_F(JsonSchemaTest, DISABLED_TestTypeReference) { |
| TestFunction("testTypeReference"); |
| } |
| - |
| +#endif |
| Property changes on: chrome/renderer/extensions/json_schema_unittest.cc |
| ___________________________________________________________________ |
| Name: svn:eol-style |
| + LF |