commit | 1ad77324aae9b235cd86b33a69a9db1f4839f325 | [log] [tgz] |
---|---|---|
author | Treehugger Robot <android-test-infra-autosubmit@system.gserviceaccount.com> | Thu Jan 18 05:02:51 2024 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Thu Jan 18 05:02:51 2024 +0000 |
tree | b373c4606ddcacea5f7bb2df4811f98da8af33d9 | |
parent | 45883820c0956f40db96c66e5a0e4c83d96d7997 [diff] | |
parent | 4c7a5de9577abc44467426684e9bfba367e56dfc [diff] |
Merge "Modify CameraUseStreamConfigToDisplay" into android13-tests-dev am: 4c7a5de957 Original change: https://android-review.googlesource.com/c/platform/hardware/interfaces/+/2911485 Change-Id: I897351c977ca13a3bd3e053d0aa9de746d31f991 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);