Fix autotest error on non-Win platforms.

Review URL: http://webrtc-codereview.appspot.com/149007

git-svn-id: http://webrtc.googlecode.com/svn/trunk@607 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
andrew@webrtc.org 2011-09-16 14:22:39 +00:00
parent e126dbbce8
commit 416d702ace

View File

@ -2026,7 +2026,7 @@ int VoETestManager::DoStandardTest()
// Can't be called before StartPlayout().
TEST_MUSTFAIL(base->StartSend(0));
TEST_MUSTPASS(base->StartPlayout(0));
TEST_MUSTPASS(base->StartSend(0));
TEST_LOG("Processing capture data with built-in AEC...\n");
@ -2074,10 +2074,9 @@ int VoETestManager::DoStandardTest()
TEST_LOG("Disabling built-in AEC.\n");
TEST_MUSTPASS(hardware->EnableBuiltInAEC(false));
TEST_MUSTPASS(base->StartSend(0));
TEST_MUSTPASS(base->StartPlayout(0));
}
TEST_MUSTPASS(base->StartSend(0));
TEST_MUSTPASS(base->StartPlayout(0));
#else
TEST_LOG("\n\n+++ More hardware tests NOT ENABLED +++\n");
#endif