commit | 173a33d3f54a077f6273fc3e1a05a12a18ebf6cd | [log] [tgz] |
---|---|---|
author | Treehugger Robot <android-test-infra-autosubmit@system.gserviceaccount.com> | Thu Jan 18 06:31:19 2024 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Thu Jan 18 06:31:19 2024 +0000 |
tree | f43ccf1e47d2cddce4d481a20a0f7008f5e818b1 | |
parent | ee388176ed6fd1b911fd1d56b273445e387589b9 [diff] | |
parent | 1479889dc3c7ef0e9c18ac616128c77525a79ea7 [diff] |
Merge "Modify CameraUseStreamConfigToDisplay" into android13-tests-dev am: 4c7a5de957 am: 1ad77324aa am: 1479889dc3 Original change: https://android-review.googlesource.com/c/platform/hardware/interfaces/+/2911485 Change-Id: Id25f69a53c6c4b077da7dfd62b9c643bb7d96b22 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
diff --git a/automotive/evs/1.1/vts/functional/VtsHalEvsV1_1TargetTest.cpp b/automotive/evs/1.1/vts/functional/VtsHalEvsV1_1TargetTest.cpp index 03f256e..ff7f41c 100644 --- a/automotive/evs/1.1/vts/functional/VtsHalEvsV1_1TargetTest.cpp +++ b/automotive/evs/1.1/vts/functional/VtsHalEvsV1_1TargetTest.cpp
@@ -2010,6 +2010,13 @@ // Test each reported camera for (auto&& cam: cameraInfo) { + bool isLogicalCam = false; + getPhysicalCameraIds(cam.v1.cameraId, isLogicalCam); + if (isLogicalCam) { + LOG(INFO) << "Skip a logical device " << cam.v1.cameraId; + continue; + } + // Request exclusive access to the EVS display sp<IEvsDisplay_1_0> pDisplay = pEnumerator->openDisplay(); ASSERT_NE(pDisplay, nullptr);