summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornileshagrawal@chromium.org <nileshagrawal@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-02-23 01:49:55 +0000
committernileshagrawal@chromium.org <nileshagrawal@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-02-23 01:49:55 +0000
commitfe3b57cceb3381de3b8a9e83d52f6829c14317c0 (patch)
treead6ff653e2dd9ba85b077c6296caac165a17d723
parent24432c7e297f936cd43a53456404d24031383979 (diff)
downloadchromium_src-fe3b57cceb3381de3b8a9e83d52f6829c14317c0.zip
chromium_src-fe3b57cceb3381de3b8a9e83d52f6829c14317c0.tar.gz
chromium_src-fe3b57cceb3381de3b8a9e83d52f6829c14317c0.tar.bz2
Android: Add disabled file for content_browsertests
BUG=138275 Review URL: https://chromiumcodereview.appspot.com/12321085 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@184253 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--build/android/pylib/gtest/filter/content_browsertests_disabled46
-rw-r--r--build/android/pylib/gtest/test_package.py5
2 files changed, 51 insertions, 0 deletions
diff --git a/build/android/pylib/gtest/filter/content_browsertests_disabled b/build/android/pylib/gtest/filter/content_browsertests_disabled
new file mode 100644
index 0000000..b4c3aba
--- /dev/null
+++ b/build/android/pylib/gtest/filter/content_browsertests_disabled
@@ -0,0 +1,46 @@
+# List of suppressions
+# Timeouts
+Http/MediaTest.*
+File/MediaTest.*
+ExternalClearKey/EncryptedMediaTest.*
+ClearKey/EncryptedMediaTest.*
+WorkerTest.*
+MediaTest.*
+AudioLayoutTest.*
+WebGLConformanceTest.*
+MessagePortTest.Tests
+EncryptedMediaTest.InvalidKeySystem
+IndexedDBBrowserTest.NullKeyPathPersistence
+IndexedDBBrowserTest.VersionChangeCrashResilience
+CrossPlatformAccessibilityBrowserTest.*
+GpuCrashTest.MANUAL_WebkitLoseContext
+DatabaseTest.*
+BrowserPluginHostTest.*
+
+# Failures
+WebrtcBrowserTest.*
+WorkerLayoutTest.*
+MediaLayoutTest.*
+IndexedDBLayoutTest.*
+ContentBrowserTest.MANUAL_ShouldntRun
+RenderViewHostTest.BaseURLParam
+OffTheRecordClipboardTest.ClearContentData
+FileSystemLayoutTest.*
+GpuPixelTestCanvas2DSD.MANUAL_Canvas2DRedBoxSD
+GpuPixelBrowserTest.*
+BlobLayoutTest.XhrResponseBlob
+FileSystemBrowserTestWithLowQuota.QuotaTest
+BlobLayoutTest.*
+ChildProcessSecurityPolicyInProcessBrowserTest.NoLeak
+
+# Crashes
+RenderViewImplTest.*
+BrowserPluginTest.*
+PluginTest.*
+WorkerXHRHttpLayoutTest.Tests
+SecurityExploitBrowserTest.SetWebUIProperty
+RendererAccessibilityTest.EditableTextModeFocusNotifications
+RenderWidgetTest.OnMsgPaintAtSize
+GpuCrashTest.MANUAL_Kill
+DownloadContentTest.ResumeInterruptedDownload
+RenderViewHostManagerTest.*
diff --git a/build/android/pylib/gtest/test_package.py b/build/android/pylib/gtest/test_package.py
index be153a0..cde3b39 100644
--- a/build/android/pylib/gtest/test_package.py
+++ b/build/android/pylib/gtest/test_package.py
@@ -111,6 +111,11 @@ class TestPackage(object):
self.adb.PushIfNeeded(
self.test_suite_dirname + '/linux_dumper_unittest_helper',
constants.TEST_EXECUTABLE_DIR + '/linux_dumper_unittest_helper')
+ if self.test_suite_basename == 'content_browsertests':
+ self.adb.PushIfNeeded(
+ self.test_suite_dirname +
+ '/../content_shell/assets/content_shell.pak',
+ external_storage + '/paks/content_shell.pak')
def _WatchTestOutput(self, p):
"""Watches the test output.