| 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 // 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 |
| 17 // 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 |
| 18 // settings in voice_engine_configurations.h. | 18 // settings in voice_engine_configurations.h. |
| 19 #define _TEST_BASE_ | 19 #define _TEST_BASE_ |
| 20 #define _TEST_RTP_RTCP_ | 20 #define _TEST_RTP_RTCP_ |
| 21 #define _TEST_HARDWARE_ | |
| 22 #define _TEST_CODEC_ | 21 #define _TEST_CODEC_ |
| 23 #define _TEST_FILE_ | 22 #define _TEST_FILE_ |
| 24 #define _TEST_NETWORK_ | 23 #define _TEST_NETWORK_ |
| 25 | 24 |
| 26 #define TESTED_AUDIO_LAYER kAudioPlatformDefault | |
| 27 //#define TESTED_AUDIO_LAYER kAudioLinuxPulse | |
| 28 | |
| 29 // #define _ENABLE_VISUAL_LEAK_DETECTOR_ // Enables VLD to find memory leaks | |
| 30 // #define _ENABLE_IPV6_TESTS_ // Enables IPv6 tests in network xtest | |
| 31 // #define _USE_EXTENDED_TRACE_ // Adds unique trace files for extended test | |
| 32 // #define _MEMORY_TEST_ | |
| 33 | |
| 34 // Enable this when running instrumentation of some kind to exclude tests | 25 // Enable this when running instrumentation of some kind to exclude tests |
| 35 // that will not pass due to slowed down execution. | 26 // that will not pass due to slowed down execution. |
| 36 // #define _INSTRUMENTATION_TESTING_ | 27 // #define _INSTRUMENTATION_TESTING_ |
| 37 | 28 |
| 38 // Some parts can cause problems while running Insure | 29 // Some parts can cause problems while running Insure |
| 39 #ifdef __INSURE__ | 30 #ifdef __INSURE__ |
| 40 #define _INSTRUMENTATION_TESTING_ | 31 #define _INSTRUMENTATION_TESTING_ |
| 41 #endif | 32 #endif |
| 42 | 33 |
| 43 #define MARK() TEST_LOG("."); fflush(NULL); // Add test marker | 34 #define MARK() TEST_LOG("."); fflush(NULL); // Add test marker |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 { \ | 102 { \ |
| 112 TEST_LOG("\n>>> Excluding test at line: %i <<<\n\n",__LINE__); \ | 103 TEST_LOG("\n>>> Excluding test at line: %i <<<\n\n",__LINE__); \ |
| 113 } | 104 } |
| 114 | 105 |
| 115 #define INCOMPLETE() \ | 106 #define INCOMPLETE() \ |
| 116 { \ | 107 { \ |
| 117 TEST_LOG("\n>>> Incomplete test at line: %i <<<\n\n",__LINE__); \ | 108 TEST_LOG("\n>>> Incomplete test at line: %i <<<\n\n",__LINE__); \ |
| 118 } | 109 } |
| 119 | 110 |
| 120 #endif // WEBRTC_VOICE_ENGINE_VOE_TEST_DEFINES_H | 111 #endif // WEBRTC_VOICE_ENGINE_VOE_TEST_DEFINES_H |
| OLD | NEW |