Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cherry pick #11892 - Ignore ae mode in drops on set test #12165

Merged
merged 2 commits into from
Sep 5, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion unit-tests/live/options/test-drops-on-set.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,9 @@ 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]
options_to_ignore = [rs.option.visual_preset, rs.option.inter_cam_sync_mode, rs.option.emitter_frequency, rs.option.auto_exposure_mode]
maloel marked this conversation as resolved.
Show resolved Hide resolved

def test_option_changes(sensor):
global options_to_ignore
Expand Down
Loading