summaryrefslogtreecommitdiffstats
path: root/media
diff options
context:
space:
mode:
authorsbc@chromium.org <sbc@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-07-03 04:13:01 +0000
committersbc@chromium.org <sbc@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-07-03 04:13:01 +0000
commit888f5936458dc1859a024e2ce695eaaeb7a0e499 (patch)
tree8a4cbca9a1a24ce5c9a33e1ff3a0cb6e435563da /media
parent46f3efa02e9aa4186a187c01d1419a6df29fe1a0 (diff)
downloadchromium_src-888f5936458dc1859a024e2ce695eaaeb7a0e499.zip
chromium_src-888f5936458dc1859a024e2ce695eaaeb7a0e499.tar.gz
chromium_src-888f5936458dc1859a024e2ce695eaaeb7a0e499.tar.bz2
Disable more failing webrtc tests on ARM linux.
These are hopefully the last set of tests to be disabled before the ARM linux test bot goes 100% green. BUG=238490 Review URL: https://chromiumcodereview.appspot.com/18567002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@209880 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'media')
-rw-r--r--media/audio/audio_input_unittest.cc24
1 files changed, 21 insertions, 3 deletions
diff --git a/media/audio/audio_input_unittest.cc b/media/audio/audio_input_unittest.cc
index 522809c..aa685d0 100644
--- a/media/audio/audio_input_unittest.cc
+++ b/media/audio/audio_input_unittest.cc
@@ -118,8 +118,14 @@ TEST(AudioInputTest, CreateAndClose) {
ais->Close();
}
+#if defined(OS_LINUX) && !defined(OS_CHROMEOS) && defined(ARCH_CPU_ARM_FAMILY)
+// This test is failing on ARM linux: http://crbug.com/238490
+#define MAYBE_OpenAndClose DISABLED_OpenAndClose
+#else
+#define MAYBE_OpenAndClose OpenAndClose
+#endif
// Test create, open and close of an AudioInputStream without recording audio.
-TEST(AudioInputTest, OpenAndClose) {
+TEST(AudioInputTest, MAYBE_OpenAndClose) {
scoped_ptr<AudioManager> audio_man(AudioManager::Create());
if (!CanRunAudioTests(audio_man.get()))
return;
@@ -128,8 +134,14 @@ TEST(AudioInputTest, OpenAndClose) {
ais->Close();
}
+#if defined(OS_LINUX) && !defined(OS_CHROMEOS) && defined(ARCH_CPU_ARM_FAMILY)
+// This test is failing on ARM linux: http://crbug.com/238490
+#define MAYBE_OpenStopAndClose DISABLED_OpenStopAndClose
+#else
+#define MAYBE_OpenStopAndClose OpenStopAndClose
+#endif
// Test create, open, stop and close of an AudioInputStream without recording.
-TEST(AudioInputTest, OpenStopAndClose) {
+TEST(AudioInputTest, MAYBE_OpenStopAndClose) {
scoped_ptr<AudioManager> audio_man(AudioManager::Create());
if (!CanRunAudioTests(audio_man.get()))
return;
@@ -139,8 +151,14 @@ TEST(AudioInputTest, OpenStopAndClose) {
ais->Close();
}
+#if defined(OS_LINUX) && !defined(OS_CHROMEOS) && defined(ARCH_CPU_ARM_FAMILY)
+// This test is failing on ARM linux: http://crbug.com/238490
+#define MAYBE_Record DISABLED_Record
+#else
+#define MAYBE_Record Record
+#endif
// Test a normal recording sequence using an AudioInputStream.
-TEST(AudioInputTest, Record) {
+TEST(AudioInputTest, MAYBE_Record) {
scoped_ptr<AudioManager> audio_man(AudioManager::Create());
if (!CanRunAudioTests(audio_man.get()))
return;