| Index: webrtc/modules/audio_coding/neteq/neteq_external_decoder_unittest.cc
|
| diff --git a/webrtc/modules/audio_coding/neteq/neteq_external_decoder_unittest.cc b/webrtc/modules/audio_coding/neteq/neteq_external_decoder_unittest.cc
|
| index bf68b3b8e2caec62c3ee86a8eb9d4b48e57a51b6..6f57a4ae6b3752a59ee82db12073343583266859 100644
|
| --- a/webrtc/modules/audio_coding/neteq/neteq_external_decoder_unittest.cc
|
| +++ b/webrtc/modules/audio_coding/neteq/neteq_external_decoder_unittest.cc
|
| @@ -17,7 +17,6 @@
|
| #include "webrtc/modules/audio_coding/neteq/tools/neteq_external_decoder_test.h"
|
| #include "webrtc/modules/audio_coding/neteq/tools/rtp_generator.h"
|
| #include "webrtc/test/testsupport/fileutils.h"
|
| -#include "webrtc/test/testsupport/gtest_disable.h"
|
|
|
| namespace webrtc {
|
|
|
| @@ -234,7 +233,7 @@ class NetEqExternalVsInternalDecoderTest : public NetEqExternalDecoderUnitTest,
|
| int16_t output_[kMaxBlockSize];
|
| };
|
|
|
| -TEST_F(NetEqExternalVsInternalDecoderTest, DISABLED_ON_IOS(RunTest)) {
|
| +TEST_F(NetEqExternalVsInternalDecoderTest, RunTest) {
|
| RunTest(100); // Run 100 laps @ 10 ms each in the test loop.
|
| }
|
|
|
| @@ -329,7 +328,7 @@ class LargeTimestampJumpTest : public NetEqExternalDecoderUnitTest,
|
| int16_t output_[kMaxBlockSize];
|
| };
|
|
|
| -TEST_F(LargeTimestampJumpTest, DISABLED_ON_IOS(JumpLongerThanHalfRange)) {
|
| +TEST_F(LargeTimestampJumpTest, JumpLongerThanHalfRange) {
|
| // Set the timestamp series to start at 2880, increase to 7200, then jump to
|
| // 2869342376. The sequence numbers start at 42076 and increase by 1 for each
|
| // packet, also when the timestamp jumps.
|
| @@ -353,8 +352,7 @@ TEST_F(LargeTimestampJumpTest, DISABLED_ON_IOS(JumpLongerThanHalfRange)) {
|
| EXPECT_EQ(kRecovered, test_state_);
|
| }
|
|
|
| -TEST_F(LargeTimestampJumpTest,
|
| - DISABLED_ON_IOS(JumpLongerThanHalfRangeAndWrap)) {
|
| +TEST_F(LargeTimestampJumpTest, JumpLongerThanHalfRangeAndWrap) {
|
| // Make a jump larger than half the 32-bit timestamp range. Set the start
|
| // timestamp such that the jump will result in a wrap around.
|
| static const uint16_t kStartSeqeunceNumber = 42076;
|
| @@ -413,7 +411,7 @@ class ShortTimestampJumpTest : public LargeTimestampJumpTest {
|
| }
|
| };
|
|
|
| -TEST_F(ShortTimestampJumpTest, DISABLED_ON_IOS(JumpShorterThanHalfRange)) {
|
| +TEST_F(ShortTimestampJumpTest, JumpShorterThanHalfRange) {
|
| // Make a jump shorter than half the 32-bit timestamp range. Set the start
|
| // timestamp such that the jump will not result in a wrap around.
|
| static const uint16_t kStartSeqeunceNumber = 42076;
|
| @@ -437,8 +435,7 @@ TEST_F(ShortTimestampJumpTest, DISABLED_ON_IOS(JumpShorterThanHalfRange)) {
|
| EXPECT_EQ(kRecovered, test_state_);
|
| }
|
|
|
| -TEST_F(ShortTimestampJumpTest,
|
| - DISABLED_ON_IOS(JumpShorterThanHalfRangeAndWrap)) {
|
| +TEST_F(ShortTimestampJumpTest, JumpShorterThanHalfRangeAndWrap) {
|
| // Make a jump shorter than half the 32-bit timestamp range. Set the start
|
| // timestamp such that the jump will result in a wrap around.
|
| static const uint16_t kStartSeqeunceNumber = 42076;
|
|
|