Updating bitrate controller tests to test naming conventions.

The test is now named 'bitrate_controller_unittests'.
This CL also enables it on the bots. The test is excluded on ASAN since
it fails when compiled with projects generated with GYP_DEFINES='asan=1' (see issue 555).

BUG=None
TEST=bitrate_controller_unittests was tested in Debug+Release on Linux, Mac and Windows + TSAN and memcheck.

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

git-svn-id: http://webrtc.googlecode.com/svn/trunk@2333 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
kjellander@webrtc.org
2012-05-31 13:55:01 +00:00
parent baaf2434a7
commit 2e84c112f5
6 changed files with 93 additions and 118 deletions

View File

@@ -68,6 +68,7 @@ NORMAL_TESTS = {
'audio_coding_unittests': (True, True, True),
'audio_conference_mixer_unittests':(True, True, True),
'audioproc_unittest': (True, True, True),
'bitrate_controller_unittests': (True, True, True),
'cng_unittests': (True, True, True),
'g711_unittests': (True, True, True),
'g722_unittests': (True, True, True),

View File

@@ -92,6 +92,7 @@ NORMAL_TESTS = {
'audio_conference_mixer_unittests':(True, True, True),
'audio_device_test_api': (False, True, False), # no audio devices
'audioproc_unittest': (True, True, True),
'bitrate_controller_unittests': (True, True, True),
'cng_unittests': (True, True, True),
'g711_unittests': (True, True, True),
'g722_unittests': (True, True, True),
@@ -143,6 +144,7 @@ TSAN_DISABLED_TESTS = [
]
ASAN_DISABLED_TESTS = [
'audio_coding_module_test', # Issue 281
'bitrate_controller_unittests', # Issue 555
'neteq_unittests', # Issue 282
]