summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoroshima@chromium.org <oshima@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-12-01 09:35:04 +0000
committeroshima@chromium.org <oshima@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-12-01 09:35:04 +0000
commitd1a53199b004d28f3f033a506bfd7c7cb919ac26 (patch)
treeb8a185dc4ad7e073f71d90f0bd26d5000f47cf03
parentd2b3a5de6b8969512fe5cd72e4a289a3e079fde3 (diff)
downloadchromium_src-d1a53199b004d28f3f033a506bfd7c7cb919ac26.zip
chromium_src-d1a53199b004d28f3f033a506bfd7c7cb919ac26.tar.gz
chromium_src-d1a53199b004d28f3f033a506bfd7c7cb919ac26.tar.bz2
Move print_dialog_cloud_uitests to interactive_ui_tests for troubleshooting for aura.
Move the test to interactive_ui_tests to keep browser_test green while troubleshooting the issue for aura. This may actually be necessary as it's using SendKey functions. (no other tests in browser_tests uses it and all other tests that uses SendKey/Events are in interative_ui_tests) BUG=103497 TEST=none Review URL: http://codereview.chromium.org/8735016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112435 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--chrome/browser/printing/print_dialog_cloud_uitest.cc3
-rw-r--r--chrome/chrome_tests.gypi8
2 files changed, 9 insertions, 2 deletions
diff --git a/chrome/browser/printing/print_dialog_cloud_uitest.cc b/chrome/browser/printing/print_dialog_cloud_uitest.cc
index f02d905e..37f9992 100644
--- a/chrome/browser/printing/print_dialog_cloud_uitest.cc
+++ b/chrome/browser/printing/print_dialog_cloud_uitest.cc
@@ -227,9 +227,8 @@ net::URLRequestJob* PrintDialogCloudTest::Factory(net::URLRequest* request,
return new SimpleTestJob(request);
}
-#if defined(OS_WIN) || defined(USE_AURA)
+#if defined(OS_WIN)
// http://crbug.com/94864 for OS_WIN issue
-// http://crbug.com/104396 for AURA issue.
#define MAYBE_HandlersRegistered DISABLED_HandlersRegistered
#else
#define MAYBE_HandlersRegistered HandlersRegistered
diff --git a/chrome/chrome_tests.gypi b/chrome/chrome_tests.gypi
index 4b79636..933109b 100644
--- a/chrome/chrome_tests.gypi
+++ b/chrome/chrome_tests.gypi
@@ -573,6 +573,12 @@
'../build/linux/system.gyp:ssl',
],
}],
+ # For troubleshooting crbug.com/103497.
+ ['chromeos==1 and use_aura==1', {
+ 'sources': [
+ 'browser/printing/print_dialog_cloud_uitest.cc',
+ ],
+ }],
['toolkit_uses_gtk == 1 and toolkit_views == 0', {
'sources!': [
# TODO(port)
@@ -2779,6 +2785,8 @@
['exclude', '^browser/chromeos/login/screen_locker_tester.cc'],
['exclude', '^browser/chromeos/notifications/'],
['exclude', '^browser/ui/views/status_icons/status_tray_chromeos_browsertest.cc'],
+ # For troubleshooting crbug.com/103497.
+ ['exclude', '^browser/printing/print_dialog_cloud_uitest.cc'],
],
}],
],