OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
11 #ifndef WEBRTC_VOICE_ENGINE_VOE_TEST_DEFINES_H | 11 #ifndef WEBRTC_VOICE_ENGINE_VOE_TEST_DEFINES_H |
12 #define WEBRTC_VOICE_ENGINE_VOE_TEST_DEFINES_H | 12 #define WEBRTC_VOICE_ENGINE_VOE_TEST_DEFINES_H |
13 | 13 |
14 #include "webrtc/voice_engine/test/auto_test/voe_test_common.h" | 14 #include "webrtc/voice_engine/test/auto_test/voe_test_common.h" |
15 | 15 |
16 // Read WEBRTC_VOICE_ENGINE_XXX_API compiler flags | |
17 #include "webrtc/voice_engine_configurations.h" | |
18 | |
19 // Select the tests to execute, list order below is same as they will be | 16 // Select the tests to execute, list order below is same as they will be |
20 // executed. Note that, all settings below will be overriden by sub-API | 17 // executed. Note that, all settings below will be overriden by sub-API |
21 // settings in voice_engine_configurations.h. | 18 // settings in voice_engine_configurations.h. |
22 #define _TEST_BASE_ | 19 #define _TEST_BASE_ |
23 #define _TEST_RTP_RTCP_ | 20 #define _TEST_RTP_RTCP_ |
24 #define _TEST_HARDWARE_ | 21 #define _TEST_HARDWARE_ |
25 #define _TEST_CODEC_ | 22 #define _TEST_CODEC_ |
26 #define _TEST_VOLUME_ | 23 #define _TEST_VOLUME_ |
27 #define _TEST_AUDIO_PROCESSING_ | 24 #define _TEST_AUDIO_PROCESSING_ |
28 #define _TEST_FILE_ | 25 #define _TEST_FILE_ |
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
119 { \ | 116 { \ |
120 TEST_LOG("\n>>> Excluding test at line: %i <<<\n\n",__LINE__); \ | 117 TEST_LOG("\n>>> Excluding test at line: %i <<<\n\n",__LINE__); \ |
121 } | 118 } |
122 | 119 |
123 #define INCOMPLETE() \ | 120 #define INCOMPLETE() \ |
124 { \ | 121 { \ |
125 TEST_LOG("\n>>> Incomplete test at line: %i <<<\n\n",__LINE__); \ | 122 TEST_LOG("\n>>> Incomplete test at line: %i <<<\n\n",__LINE__); \ |
126 } | 123 } |
127 | 124 |
128 #endif // WEBRTC_VOICE_ENGINE_VOE_TEST_DEFINES_H | 125 #endif // WEBRTC_VOICE_ENGINE_VOE_TEST_DEFINES_H |
OLD | NEW |