mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-01 16:23:37 +00:00
Merge "audio: Remove InputStreamTest#getCapturePosition test" am: 83d51232ca am: e8ecd144e7
Original change: https://android-review.googlesource.com/c/platform/hardware/interfaces/+/2454890 Change-Id: If89d8d422b588811c498648175291407c58e00dc Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
@@ -1698,26 +1698,6 @@ TEST_P(InputStreamTest, GetInputFramesLost) {
|
||||
ASSERT_EQ(0U, framesLost);
|
||||
}
|
||||
|
||||
TEST_P(InputStreamTest, getCapturePosition) {
|
||||
doc::test(
|
||||
"The capture position of a non prepared stream should not be "
|
||||
"retrievable or 0");
|
||||
uint64_t frames;
|
||||
uint64_t time;
|
||||
ASSERT_OK(stream->getCapturePosition(returnIn(res, frames, time)));
|
||||
// Although 'getCapturePosition' is mandatory in V7, legacy implementations
|
||||
// may return -ENOSYS (which is translated to NOT_SUPPORTED) in cases when
|
||||
// the capture position can't be retrieved, e.g. when the stream isn't
|
||||
// running. Because of this, we don't fail when getting NOT_SUPPORTED
|
||||
// in this test. Behavior of 'getCapturePosition' for running streams is
|
||||
// tested in 'PcmOnlyConfigInputStreamTest' for V7.
|
||||
ASSERT_RESULT(okOrInvalidStateOrNotSupported, res);
|
||||
if (res == Result::OK) {
|
||||
ASSERT_EQ(0U, frames);
|
||||
ASSERT_LE(0U, time);
|
||||
}
|
||||
}
|
||||
|
||||
//////////////////////////////////////////////////////////////////////////////
|
||||
///////////////////////////////// StreamOut //////////////////////////////////
|
||||
//////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
Reference in New Issue
Block a user