diff options
author | nfullagar@google.com <nfullagar@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-12 03:46:01 +0000 |
---|---|---|
committer | nfullagar@google.com <nfullagar@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-12 03:46:01 +0000 |
commit | 671ad89940092ae7025194bfe14665ab0e002cfd (patch) | |
tree | 77d6087f5c8bcbfc35a00252655114e32723b755 /ppapi/native_client | |
parent | ea3e497b1949405ae04caa8b1dc8400672b1dfa1 (diff) | |
download | chromium_src-671ad89940092ae7025194bfe14665ab0e002cfd.zip chromium_src-671ad89940092ae7025194bfe14665ab0e002cfd.tar.gz chromium_src-671ad89940092ae7025194bfe14665ab0e002cfd.tar.bz2 |
Only enable ppapi_browser/ppb_audio test for mac bots - other bots don't
reliably have audio subsystems.
test=this is the test
bug=http://code.google.com/p/nativeclient/issues/detail?id=2668
Review URL: http://codereview.chromium.org/10052032
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@131920 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/native_client')
-rw-r--r-- | ppapi/native_client/tests/ppapi_browser/ppb_audio/nacl.scons | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/ppapi/native_client/tests/ppapi_browser/ppb_audio/nacl.scons b/ppapi/native_client/tests/ppapi_browser/ppb_audio/nacl.scons index 53848c8..60d952d 100644 --- a/ppapi/native_client/tests/ppapi_browser/ppb_audio/nacl.scons +++ b/ppapi/native_client/tests/ppapi_browser/ppb_audio/nacl.scons @@ -38,7 +38,12 @@ node = env.PPAPIBrowserTester('ppapi_ppb_audio_browser_test.out', env.File('ppapi_ppb_audio.html')], browser_flags=['--enable-pepper-testing']) +# Though this tests passes locally, it does not pass on the Windows +# and Linux buildbots, which do not have audio devices. Although +# StartPlayback() and StopPlayback() succeed, the audio callback is +# not called. However, this does work on the Mac buildbots. +is_broken = env.PPAPIBrowserTesterIsBroken() or not env.Bit('host_mac') env.AddNodeToTestSuite(node, ['chrome_browser_tests'], 'run_ppapi_ppb_audio_browser_test', - is_broken=env.PPAPIBrowserTesterIsBroken()) + is_broken=is_broken) |