From d5732b6bbf25374d9e5a0f9f5e521c972f790283 Mon Sep 17 00:00:00 2001 From: Changyeon Jo Date: Sat, 22 Apr 2023 22:34:13 +0000 Subject: [PATCH] [RESTRICT AUTOMERGE] Modify CameraUseStreamConfigToDisplay Exclude logical camera devices from CameraUseStreamConfigToDisplay test case. Bug: 275049370 Test: atest VtsHalEvsV1_0TargetTest and atest VtsHalEvsV1_1TargetTest Change-Id: If6b31d94bdbffd2f4e9ab9bd5c8957ec85904187 --- .../evs/1.1/vts/functional/VtsHalEvsV1_1TargetTest.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/automotive/evs/1.1/vts/functional/VtsHalEvsV1_1TargetTest.cpp b/automotive/evs/1.1/vts/functional/VtsHalEvsV1_1TargetTest.cpp index 17e7e8de46..0f9e4686f6 100644 --- a/automotive/evs/1.1/vts/functional/VtsHalEvsV1_1TargetTest.cpp +++ b/automotive/evs/1.1/vts/functional/VtsHalEvsV1_1TargetTest.cpp @@ -1968,6 +1968,13 @@ TEST_P(EvsHidlTest, CameraUseStreamConfigToDisplay) { // 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; + } + // choose a configuration that has a frame rate faster than minReqFps. Stream targetCfg = {}; const int32_t minReqFps = 15;