Index: webrtc/modules/audio_coding/codecs/isac/main/source/isac_unittest.cc |
diff --git a/webrtc/modules/audio_coding/codecs/isac/main/source/isac_unittest.cc b/webrtc/modules/audio_coding/codecs/isac/main/source/isac_unittest.cc |
index 73efee12800e6c3f35ee13766d124782cb0411ad..a751c2479215b3966d4a90233c3f5659ebe6d7ff 100644 |
--- a/webrtc/modules/audio_coding/codecs/isac/main/source/isac_unittest.cc |
+++ b/webrtc/modules/audio_coding/codecs/isac/main/source/isac_unittest.cc |
@@ -12,7 +12,6 @@ |
#include "testing/gtest/include/gtest/gtest.h" |
#include "webrtc/modules/audio_coding/codecs/isac/main/interface/isac.h" |
#include "webrtc/test/testsupport/fileutils.h" |
-#include "webrtc/test/testsupport/gtest_disable.h" |
struct WebRtcISACStruct; |
@@ -55,24 +54,24 @@ void IsacTest::SetUp() { |
} |
// Test failing Create. |
-TEST_F(IsacTest, DISABLED_ON_IOS(IsacCreateFail)) { |
+TEST_F(IsacTest, IsacCreateFail) { |
// Test to see that an invalid pointer is caught. |
EXPECT_EQ(-1, WebRtcIsac_Create(NULL)); |
} |
// Test failing Free. |
-TEST_F(IsacTest, DISABLED_ON_IOS(IsacFreeFail)) { |
+TEST_F(IsacTest, IsacFreeFail) { |
// Test to see that free function doesn't crash. |
EXPECT_EQ(0, WebRtcIsac_Free(NULL)); |
} |
// Test normal Create and Free. |
-TEST_F(IsacTest, DISABLED_ON_IOS(IsacCreateFree)) { |
+TEST_F(IsacTest, IsacCreateFree) { |
EXPECT_EQ(0, WebRtcIsac_Create(&isac_codec_)); |
EXPECT_TRUE(isac_codec_ != NULL); |
EXPECT_EQ(0, WebRtcIsac_Free(isac_codec_));} |
-TEST_F(IsacTest, DISABLED_ON_IOS(IsacUpdateBWE)) { |
+TEST_F(IsacTest, IsacUpdateBWE) { |
// Create encoder memory. |
EXPECT_EQ(0, WebRtcIsac_Create(&isac_codec_)); |