From 2726cd22c97bb218bcc270ef13572048b815d819 Mon Sep 17 00:00:00 2001 From: "phoglund@webrtc.org" Date: Tue, 7 Feb 2012 12:13:58 +0000 Subject: [PATCH] Reconfigured which tests run on the integration test build bot. The VoE Volume Test is flaky and is probably very hard to fix. The video auto tests are ready to be enabled, except the full stack test. BUG= TEST= Review URL: https://webrtc-codereview.appspot.com/391001 git-svn-id: http://webrtc.googlecode.com/svn/trunk@1622 4adac7df-926f-26a2-2b94-8c16560cd09d --- tools/continuous_build/webrtc_buildbot/utils.py | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/tools/continuous_build/webrtc_buildbot/utils.py b/tools/continuous_build/webrtc_buildbot/utils.py index 6c2051bb5d..29b7dad105 100755 --- a/tools/continuous_build/webrtc_buildbot/utils.py +++ b/tools/continuous_build/webrtc_buildbot/utils.py @@ -335,15 +335,21 @@ class WebRTCLinuxFactory(WebRTCFactory): self.AddCommonMakeStep(test, descriptor="make_fixed_point") self.AddCommonTestRunStep(test, descriptor="fixed_point") elif test == "vie_auto_test": + # TODO(phoglund): Enable the full stack test once it is completed and + # nonflaky. self.addStep(shell.Compile(command=('xvfb-run --server-args="-screen 0 ' '800x600x24 -extension Composite" out/Debug/vie_auto_test --automated ' - '--gtest_filter="ViEStandardIntegrationTest.*:ViEApiIntegrationTest.*" ' + '--gtest_filter="-ViEVideoVerificationTest.RunsFullStackWithoutErrors:' + '-ViEExtendedIntegrationTest.* ' '--capture_test_ensure_resolution_alignment_in_capture_device=false'), workdir="build/trunk", description=[test, "running..."], descriptionDone=[test, "done..."], name="%s" % test)) elif test == "voe_auto_test": - self.addStep(shell.Compile(command=('out/Debug/voe_auto_test --automated ' - '--gtest_filter="-*Manual*"'), + # TODO(phoglund): Remove this notice and take appropriate action when + # http://code.google.com/p/webrtc/issues/detail?id=266 is concluded. + self.addStep(shell.Compile( + command=('out/Debug/voe_auto_test --automated ' + '--gtest_filter="-VolumeTest.*"'), workdir="build/trunk", description=[test, "running..."], descriptionDone=[test, "done..."], name="%s" % test)) else: