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

Unified Diff: content/test/run_all_perftests.cc

Issue 52443004: content: Run perftests serially. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 2 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 | « content/content_tests.gypi ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/run_all_perftests.cc
diff --git a/cc/test/run_all_perftests.cc b/content/test/run_all_perftests.cc
similarity index 66%
copy from cc/test/run_all_perftests.cc
copy to content/test/run_all_perftests.cc
index abe854986dde7b97a82b843eea3cd1bc8b4e03eb..d3d1d3a6e871cdceec425e7afd9daa2d07481427 100644
--- a/cc/test/run_all_perftests.cc
+++ b/content/test/run_all_perftests.cc
@@ -2,12 +2,12 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "cc/test/cc_test_suite.h"
-#include "testing/gmock/include/gmock/gmock.h"
+#include "content/public/test/unittest_test_suite.h"
+#include "content/test/content_test_suite.h"
int main(int argc, char** argv) {
- ::testing::InitGoogleMock(&argc, argv);
- cc::CCTestSuite test_suite(argc, argv);
+ content::UnitTestTestSuite test_suite(
+ new content::ContentTestSuite(argc, argv));
// Always run the perf tests serially, to avoid distorting
// perf measurements with randomness resulting from running
« no previous file with comments | « content/content_tests.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698