| Index: webrtc/modules/audio_processing/agc/histogram_unittest.cc
|
| diff --git a/webrtc/modules/audio_processing/agc/histogram_unittest.cc b/webrtc/modules/audio_processing/agc/histogram_unittest.cc
|
| index 0b05ca978576f012176e0931036f831ad71204ce..d41aacafd854fe98e4831947ddac6f19c75fa5e9 100644
|
| --- a/webrtc/modules/audio_processing/agc/histogram_unittest.cc
|
| +++ b/webrtc/modules/audio_processing/agc/histogram_unittest.cc
|
| @@ -17,7 +17,6 @@
|
|
|
| #include "gtest/gtest.h"
|
| #include "webrtc/test/testsupport/fileutils.h"
|
| -#include "webrtc/test/testsupport/gtest_disable.h"
|
| #include "webrtc/modules/audio_processing/agc/utility.h"
|
|
|
| namespace webrtc {
|
| @@ -90,13 +89,13 @@ void HistogramTest::RunTest(bool enable_circular_buff, const char* filename) {
|
| fclose(in_file);
|
| }
|
|
|
| -TEST_F(HistogramTest, DISABLED_ON_IOS(ActiveCircularBuffer)) {
|
| +TEST_F(HistogramTest, ActiveCircularBuffer) {
|
| RunTest(true,
|
| test::ResourcePath("audio_processing/agc/agc_with_circular_buffer",
|
| "dat").c_str());
|
| }
|
|
|
| -TEST_F(HistogramTest, DISABLED_ON_IOS(InactiveCircularBuffer)) {
|
| +TEST_F(HistogramTest, InactiveCircularBuffer) {
|
| RunTest(false,
|
| test::ResourcePath("audio_processing/agc/agc_no_circular_buffer",
|
| "dat").c_str());
|
|
|