Disabling flaky tests in preparation of launching test on bots.

BUG=777

Review URL: https://webrtc-codereview.appspot.com/745005

git-svn-id: http://webrtc.googlecode.com/svn/trunk@2666 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
phoglund@webrtc.org
2012-08-27 15:16:20 +00:00
parent ac410e26a5
commit 6b84b613d5

View File

@ -360,7 +360,9 @@ TEST_F(VideoCaptureTest, Capabilities) {
} }
} }
TEST_F(VideoCaptureTest, TestTwoCameras) { // NOTE: flaky, crashes sometimes.
// http://code.google.com/p/webrtc/issues/detail?id=777
TEST_F(VideoCaptureTest, DISABLED_TestTwoCameras) {
if (number_of_devices_ < 2) { if (number_of_devices_ < 2) {
printf("There are not two cameras available. Aborting test. \n"); printf("There are not two cameras available. Aborting test. \n");
return; return;
@ -457,7 +459,9 @@ TEST_F(VideoCaptureExternalTest , TestExternalCapture) {
} }
// Test input of planar I420 frames. // Test input of planar I420 frames.
TEST_F(VideoCaptureExternalTest , TestExternalCaptureI420) { // NOTE: flaky, sometimes fails on the last CompareLastFrame.
// http://code.google.com/p/webrtc/issues/detail?id=777
TEST_F(VideoCaptureExternalTest, DISABLED_TestExternalCaptureI420) {
webrtc::VideoFrameI420 frame_i420; webrtc::VideoFrameI420 frame_i420;
frame_i420.width = kTestWidth; frame_i420.width = kTestWidth;
frame_i420.height = kTestHeight; frame_i420.height = kTestHeight;