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
This commit is contained in:
@ -128,17 +128,17 @@ NORMAL_TESTS = {
|
|||||||
"pcm16b_unittests": (True, True, True),
|
"pcm16b_unittests": (True, True, True),
|
||||||
"resampler_unittests": (True, True, True),
|
"resampler_unittests": (True, True, True),
|
||||||
"rtp_rtcp_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),
|
"system_wrappers_unittests": (True, True, True),
|
||||||
"test_bwe": (True, True, True),
|
"test_bwe": (True, True, True),
|
||||||
"test_fec": (True, True, True),
|
"test_fec": (True, True, True),
|
||||||
"test_support_unittests": (True, True, True),
|
"test_support_unittests": (True, True, True),
|
||||||
"udp_transport_unittests": (True, True, True),
|
"udp_transport_unittests": (True, True, True),
|
||||||
"vad_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_integrationtests": (False, False, False),
|
||||||
"video_codecs_test_framework_unittests": (False, False, False),
|
"video_codecs_test_framework_unittests": (True, True, True),
|
||||||
"video_coding_unittests": (True, True, False), # Issue 259
|
"video_coding_unittests": (True, True, True),
|
||||||
"video_engine_core_unittests": (True, True, True),
|
"video_engine_core_unittests": (True, True, True),
|
||||||
"video_processing_unittests": (True, True, True),
|
"video_processing_unittests": (True, True, True),
|
||||||
"voice_engine_unittests": (True, True, True),
|
"voice_engine_unittests": (True, True, True),
|
||||||
@ -154,9 +154,8 @@ PHYSICAL_MACHINE_TESTS = {
|
|||||||
|
|
||||||
VALGRIND_DISABLED_TESTS = [
|
VALGRIND_DISABLED_TESTS = [
|
||||||
"audio_coding_module_test", # Issue 270
|
"audio_coding_module_test", # Issue 270
|
||||||
"audioproc_unittest", # Fixed point mode fails; issue 272
|
|
||||||
"rtp_rtcp_unittests", # Issue 268
|
"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")
|
linux_normal_tests = utils.GetEnabledTests(NORMAL_TESTS, "Linux")
|
||||||
|
@ -383,7 +383,7 @@ class WebRTCLinuxFactory(WebRTCFactory):
|
|||||||
self.addStep(shell.Compile(command=('xvfb-run --server-args="-screen 0 '
|
self.addStep(shell.Compile(command=('xvfb-run --server-args="-screen 0 '
|
||||||
'800x600x24 -extension Composite" out/Debug/vie_auto_test --automated '
|
'800x600x24 -extension Composite" out/Debug/vie_auto_test --automated '
|
||||||
'--gtest_filter="-ViEVideoVerificationTest.RunsFullStackWithoutErrors:'
|
'--gtest_filter="-ViEVideoVerificationTest.RunsFullStackWithoutErrors:'
|
||||||
'-ViEExtendedIntegrationTest.* '
|
'-ViEExtendedIntegrationTest.*" '
|
||||||
'--capture_test_ensure_resolution_alignment_in_capture_device=false'),
|
'--capture_test_ensure_resolution_alignment_in_capture_device=false'),
|
||||||
workdir="build/trunk", description=[test, "running..."],
|
workdir="build/trunk", description=[test, "running..."],
|
||||||
descriptionDone=[test, "done..."], name="%s" % test))
|
descriptionDone=[test, "done..."], name="%s" % test))
|
||||||
|
Reference in New Issue
Block a user