From eaaccb7626e6724620968f771fc30e62779cc3ba Mon Sep 17 00:00:00 2001 From: "kjellander@webrtc.org" Date: Wed, 8 Feb 2012 13:18:00 +0000 Subject: [PATCH] Enabling fixed tests and correcting error. - video_coding_unittests on Windows - signal_processing_unittests on Window - audioproc_unittest for Valgrind Linux - corrected error in LinuxVideo configuration BUG= TEST=Tested on local master. Review URL: https://webrtc-codereview.appspot.com/392003 git-svn-id: http://webrtc.googlecode.com/svn/trunk@1640 4adac7df-926f-26a2-2b94-8c16560cd09d --- tools/continuous_build/master.cfg | 11 +++++------ tools/continuous_build/webrtc_buildbot/utils.py | 2 +- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/tools/continuous_build/master.cfg b/tools/continuous_build/master.cfg index 29bce1b243..5de25a90cb 100755 --- a/tools/continuous_build/master.cfg +++ b/tools/continuous_build/master.cfg @@ -128,17 +128,17 @@ NORMAL_TESTS = { "pcm16b_unittests": (True, True, True), "resampler_unittests": (True, True, True), "rtp_rtcp_unittests": (True, True, True), - "signal_processing_unittests": (True, True, False), # Issue 258 + "signal_processing_unittests": (True, True, True), "system_wrappers_unittests": (True, True, True), "test_bwe": (True, True, True), "test_fec": (True, True, True), "test_support_unittests": (True, True, True), "udp_transport_unittests": (True, True, True), "vad_unittests": (True, True, True), - # Below: Issue 262 and 260 + # Below: Issue 262 "video_codecs_test_framework_integrationtests": (False, False, False), - "video_codecs_test_framework_unittests": (False, False, False), - "video_coding_unittests": (True, True, False), # Issue 259 + "video_codecs_test_framework_unittests": (True, True, True), + "video_coding_unittests": (True, True, True), "video_engine_core_unittests": (True, True, True), "video_processing_unittests": (True, True, True), "voice_engine_unittests": (True, True, True), @@ -154,9 +154,8 @@ PHYSICAL_MACHINE_TESTS = { VALGRIND_DISABLED_TESTS = [ "audio_coding_module_test", # Issue 270 - "audioproc_unittest", # Fixed point mode fails; issue 272 "rtp_rtcp_unittests", # Issue 268 - "test_fec", # Too slow at the moment; issue 269 + "test_fec", # Too slow for Valgrind ] linux_normal_tests = utils.GetEnabledTests(NORMAL_TESTS, "Linux") diff --git a/tools/continuous_build/webrtc_buildbot/utils.py b/tools/continuous_build/webrtc_buildbot/utils.py index 372707b355..9ce37f6f9e 100755 --- a/tools/continuous_build/webrtc_buildbot/utils.py +++ b/tools/continuous_build/webrtc_buildbot/utils.py @@ -383,7 +383,7 @@ class WebRTCLinuxFactory(WebRTCFactory): self.addStep(shell.Compile(command=('xvfb-run --server-args="-screen 0 ' '800x600x24 -extension Composite" out/Debug/vie_auto_test --automated ' '--gtest_filter="-ViEVideoVerificationTest.RunsFullStackWithoutErrors:' - '-ViEExtendedIntegrationTest.* ' + '-ViEExtendedIntegrationTest.*" ' '--capture_test_ensure_resolution_alignment_in_capture_device=false'), workdir="build/trunk", description=[test, "running..."], descriptionDone=[test, "done..."], name="%s" % test))