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

Unified Diff: chrome/test/perf/run_all_perfuitests.cc

Issue 14273023: Rebuild test history databases when starting up performance_ui_tests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge with TopSitesLikelyImpl Created 7 years, 8 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
Index: chrome/test/perf/run_all_perfuitests.cc
diff --git a/build/android/tests/multiple_proguards/src/dummy/DummyActivity.java b/chrome/test/perf/run_all_perfuitests.cc
similarity index 50%
copy from build/android/tests/multiple_proguards/src/dummy/DummyActivity.java
copy to chrome/test/perf/run_all_perfuitests.cc
index 291a8100f394307d471d69237eee321c2a5fcc7f..5ce62ab3ab2c71b393faec34c558d2c56ec2ac12 100644
--- a/build/android/tests/multiple_proguards/src/dummy/DummyActivity.java
+++ b/chrome/test/perf/run_all_perfuitests.cc
@@ -2,13 +2,10 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-package dummy;
+#include "chrome/test/perf/perf_ui_test_suite.h"
-import android.app.Activity;
-import android.os.Bundle;
-
-/**
- * Dummy activity to build apk.
- */
-public class DummyActivity extends Activity {
+int main(int argc, char **argv) {
+ base::PlatformThread::SetName("Tests_Main");
Paweł Hajdan Jr. 2013/05/06 23:46:04 Is this needed? If so, please rather make it part
+ return PerfUITestSuite(argc, argv).Run();
}
+

Powered by Google App Engine
This is Rietveld 408576698