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

Unified Diff: chrome/test/base/chrome_test_launcher.cc

Issue 11308323: Make browser_tests early exit on Linux Aura. This way we can enable them on the try and buildbots n… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/base/chrome_test_launcher.cc
===================================================================
--- chrome/test/base/chrome_test_launcher.cc (revision 170738)
+++ chrome/test/base/chrome_test_launcher.cc (working copy)
@@ -110,10 +110,14 @@
};
int main(int argc, char** argv) {
+// http://crbug.com/163931 Disabled until browser_tests ready on Linux Aura.
+#if defined(OS_LINUX) && defined(USE_AURA) && !defined(OS_CHROMEOS)
+ return 0;
+#endif
#if defined(OS_WIN) && defined(USE_AURA)
wchar_t filename[MAX_PATH];
GetModuleFileName(NULL, filename, MAX_PATH);
- // TODO(jam): early exit until interactive_ui_tests are green.
+ // http://crbug.com/154081: early exit until interactive_ui_tests are green.
if (EndsWith(filename, L"interactive_ui_tests.exe", false)) {
LOG(INFO) << "interactive_ui_tests on win aura are not ready yet.";
return 0;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698