commit | 4933fe463637b967695b117ea6b582b8cd7f22c0 | [log] [tgz] |
---|---|---|
author | Treehugger Robot <treehugger-gerrit@google.com> | Fri Jul 31 21:54:58 2020 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Fri Jul 31 21:54:58 2020 +0000 |
tree | 6dd74923981d487b1d2b84b68b1fa344990e34f9 | |
parent | caafc5e669f2016d76b31250f6d087539f00c23c [diff] | |
parent | 643c8239edae8a147dd2d98f187c89d232c5b8c4 [diff] |
Merge "remove stopAllRecognitions VTS test" am: 643c8239ed Original change: https://android-review.googlesource.com/c/platform/hardware/interfaces/+/1383508 Change-Id: Idd99934236ab8a39cb3d5dc7f49950b4bd9ceca9
diff --git a/soundtrigger/2.0/vts/functional/VtsHalSoundtriggerV2_0TargetTest.cpp b/soundtrigger/2.0/vts/functional/VtsHalSoundtriggerV2_0TargetTest.cpp index d7a7d08..63edec5 100644 --- a/soundtrigger/2.0/vts/functional/VtsHalSoundtriggerV2_0TargetTest.cpp +++ b/soundtrigger/2.0/vts/functional/VtsHalSoundtriggerV2_0TargetTest.cpp
@@ -293,22 +293,6 @@ EXPECT_NE(0, hidlReturn); } -/** - * Test ISoundTriggerHw::stopAllRecognitions() method - * - * Verifies that: - * - the implementation implements this optional method or indicates it is not support by - * returning -ENOSYS - */ -TEST_P(SoundTriggerHidlTest, stopAllRecognitions) { - Return<int32_t> hidlReturn(0); - - hidlReturn = mSoundTriggerHal->stopAllRecognitions(); - - EXPECT_TRUE(hidlReturn.isOk()); - EXPECT_TRUE(hidlReturn == 0 || hidlReturn == -ENOSYS); -} - INSTANTIATE_TEST_SUITE_P( PerInstance, SoundTriggerHidlTest, testing::ValuesIn(android::hardware::getAllHalInstanceNames(ISoundTriggerHw::descriptor)),