Merge "Merge stage-aosp-sc-ts-dev before making it an upstream" into sc-dev

This commit is contained in:
TreeHugger Robot 2021-08-13 18:56:01 +00:00 committed by Android (Google) Code Review
commit 92f2398542

View file

@ -1390,6 +1390,9 @@ static void testSetAudioProperties(IStream* stream) {
config.channelMask.value(channelMask);
auto ret = stream->setAudioProperties(config);
EXPECT_TRUE(ret.isOk());
if (ret == Result::NOT_SUPPORTED) {
GTEST_SKIP() << "setAudioProperties is not supported";
}
EXPECT_EQ(Result::OK, ret)
<< profile.format << "; " << sampleRate << "; " << channelMask;
}