Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(99)

Side by Side Diff: webrtc/modules/audio_coding/test/Tester.cc

Issue 2358993004: Enable the -Wundef warning for clang (Closed)
Patch Set: rebase Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 #include <stdio.h> 11 #include <stdio.h>
12 #include <string> 12 #include <string>
13 #include <vector> 13 #include <vector>
14 14
15 #include "testing/gtest/include/gtest/gtest.h" 15 #include "webrtc/test/gtest.h"
16 #include "webrtc/modules/audio_coding/include/audio_coding_module.h" 16 #include "webrtc/modules/audio_coding/include/audio_coding_module.h"
17 #include "webrtc/modules/audio_coding/test/APITest.h" 17 #include "webrtc/modules/audio_coding/test/APITest.h"
18 #include "webrtc/modules/audio_coding/test/EncodeDecodeTest.h" 18 #include "webrtc/modules/audio_coding/test/EncodeDecodeTest.h"
19 #include "webrtc/modules/audio_coding/test/iSACTest.h" 19 #include "webrtc/modules/audio_coding/test/iSACTest.h"
20 #include "webrtc/modules/audio_coding/test/opus_test.h" 20 #include "webrtc/modules/audio_coding/test/opus_test.h"
21 #include "webrtc/modules/audio_coding/test/PacketLossTest.h" 21 #include "webrtc/modules/audio_coding/test/PacketLossTest.h"
22 #include "webrtc/modules/audio_coding/test/TestAllCodecs.h" 22 #include "webrtc/modules/audio_coding/test/TestAllCodecs.h"
23 #include "webrtc/modules/audio_coding/test/TestRedFec.h" 23 #include "webrtc/modules/audio_coding/test/TestRedFec.h"
24 #include "webrtc/modules/audio_coding/test/TestStereo.h" 24 #include "webrtc/modules/audio_coding/test/TestStereo.h"
25 #include "webrtc/modules/audio_coding/test/TestVADDTX.h" 25 #include "webrtc/modules/audio_coding/test/TestVADDTX.h"
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
172 // for offline testing. User interaction is needed. 172 // for offline testing. User interaction is needed.
173 #ifdef ACM_TEST_FULL_API 173 #ifdef ACM_TEST_FULL_API
174 TEST(AudioCodingModuleTest, TestAPI) { 174 TEST(AudioCodingModuleTest, TestAPI) {
175 Trace::CreateTrace(); 175 Trace::CreateTrace();
176 Trace::SetTraceFile((webrtc::test::OutputPath() + 176 Trace::SetTraceFile((webrtc::test::OutputPath() +
177 "acm_apitest_trace.txt").c_str()); 177 "acm_apitest_trace.txt").c_str());
178 webrtc::APITest().Perform(); 178 webrtc::APITest().Perform();
179 Trace::ReturnTrace(); 179 Trace::ReturnTrace();
180 } 180 }
181 #endif 181 #endif
OLDNEW
« no previous file with comments | « webrtc/modules/audio_coding/test/TestStereo.cc ('k') | webrtc/modules/audio_coding/test/TwoWayCommunication.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698