Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2302)

Unified Diff: chrome/renderer/extensions/json_schema_unittest.cc

Issue 240001: Force garbage collection after running any unit tests that initialize WebViews. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/test/render_view_test.cc » ('j') | chrome/test/render_view_test.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/extensions/json_schema_unittest.cc
===================================================================
--- chrome/renderer/extensions/json_schema_unittest.cc (revision 27159)
+++ chrome/renderer/extensions/json_schema_unittest.cc (working copy)
@@ -48,49 +48,46 @@
}
};
-// TODO: Re-enable this test! http://crbug.com/22971
-#if 0
-TEST_F(JsonSchemaTest, DISABLED_TestFormatError) {
+TEST_F(JsonSchemaTest, TestFormatError) {
TestFunction("testFormatError");
}
-TEST_F(JsonSchemaTest, DISABLED_TestComplex) {
+TEST_F(JsonSchemaTest, TestComplex) {
TestFunction("testComplex");
}
-TEST_F(JsonSchemaTest, DISABLED_TestEnum) {
+TEST_F(JsonSchemaTest, TestEnum) {
TestFunction("testEnum");
}
-TEST_F(JsonSchemaTest, DISABLED_TestExtends) {
+TEST_F(JsonSchemaTest, TestExtends) {
TestFunction("testExtends");
}
-TEST_F(JsonSchemaTest, DISABLED_TestObject) {
+TEST_F(JsonSchemaTest, TestObject) {
TestFunction("testObject");
}
-TEST_F(JsonSchemaTest, DISABLED_TestArrayTuple) {
+TEST_F(JsonSchemaTest, TestArrayTuple) {
TestFunction("testArrayTuple");
}
-TEST_F(JsonSchemaTest, DISABLED_TestArrayNonTuple) {
+TEST_F(JsonSchemaTest, TestArrayNonTuple) {
TestFunction("testArrayNonTuple");
}
-TEST_F(JsonSchemaTest, DISABLED_TestString) {
+TEST_F(JsonSchemaTest, TestString) {
TestFunction("testString");
}
-TEST_F(JsonSchemaTest, DISABLED_TestNumber) {
+TEST_F(JsonSchemaTest, TestNumber) {
TestFunction("testNumber");
}
-TEST_F(JsonSchemaTest, DISABLED_TestType) {
+TEST_F(JsonSchemaTest, TestType) {
TestFunction("testType");
}
-TEST_F(JsonSchemaTest, DISABLED_TestTypeReference) {
+TEST_F(JsonSchemaTest, TestTypeReference) {
TestFunction("testTypeReference");
}
-#endif
« no previous file with comments | « no previous file | chrome/test/render_view_test.cc » ('j') | chrome/test/render_view_test.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698