From f011c9be50451fd40e6892cf2657564570572bac Mon Sep 17 00:00:00 2001 From: Nir Azkiel Date: Mon, 4 Sep 2023 17:04:57 +0300 Subject: [PATCH 1/2] cherry pick #11892 - depth ae mode added to options to ignore in test --- unit-tests/live/options/test-drops-on-set.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unit-tests/live/options/test-drops-on-set.py b/unit-tests/live/options/test-drops-on-set.py index 9b99741f74..18bc0c61ae 100644 --- a/unit-tests/live/options/test-drops-on-set.py +++ b/unit-tests/live/options/test-drops-on-set.py @@ -108,7 +108,7 @@ def check_color_frame_drops(frame): # inter_cam_sync_mode --> frame drops are expected during inter_cam_sync_mode change # emitter_frequency --> Not allowed to be set during streaming if product_line == "D400": - options_to_ignore = [rs.option.visual_preset, rs.option.inter_cam_sync_mode, rs.option.emitter_frequency] + options_to_ignore = [rs.option.visual_preset, rs.option.inter_cam_sync_mode, rs.option.emitter_frequency, rs.option.auto_exposure_mode] def test_option_changes(sensor): global options_to_ignore From 845f4768bf078469aec118b86556e8b95ae05dbe Mon Sep 17 00:00:00 2001 From: Nir Azkiel Date: Tue, 5 Sep 2023 13:35:09 +0300 Subject: [PATCH 2/2] add comment --- unit-tests/live/options/test-drops-on-set.py | 1 + 1 file changed, 1 insertion(+) diff --git a/unit-tests/live/options/test-drops-on-set.py b/unit-tests/live/options/test-drops-on-set.py index 18bc0c61ae..0396647044 100644 --- a/unit-tests/live/options/test-drops-on-set.py +++ b/unit-tests/live/options/test-drops-on-set.py @@ -107,6 +107,7 @@ def check_color_frame_drops(frame): # visual_preset --> frame drops are expected during visual_preset change # inter_cam_sync_mode --> frame drops are expected during inter_cam_sync_mode change # emitter_frequency --> Not allowed to be set during streaming +# auto_exposure_mode --> Not allowed to be set during streaming if product_line == "D400": options_to_ignore = [rs.option.visual_preset, rs.option.inter_cam_sync_mode, rs.option.emitter_frequency, rs.option.auto_exposure_mode]