Skip to content
Merged
Show file tree
Hide file tree
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/rec-play/test-got-playback-frames.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# License: Apache 2.0. See LICENSE file in root directory.
# Copyright(c) 2021 RealSense, Inc. All Rights Reserved.

#test:device each(D400*)
# test:device each(D400*)
# test:device each(D500*)

import pyrealsense2 as rs, os, time, tempfile, platform, sys
from rspy import devices, log, test
Expand Down
7 changes: 5 additions & 2 deletions unit-tests/live/rec-play/test-non-realtime.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
# License: Apache 2.0. See LICENSE file in root directory.
# Copyright(c) 2021 RealSense, Inc. All Rights Reserved.

#test:timeout 20
#test:device each(D400*) !D455
# test:timeout 20
# test:device each(D400*)
# test:device each(D500*)
# Running nightly as this tests specific bug fix in a code that is seldom touched, no need to run for each push.
# test:donotrun:!nightly
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe we need it running on a single device and not all each?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Using D500* we cannot assure it ran using DDS connection.
It used to be each(D400*) !D455, don't know why D455 was excluded, it runs successfully on it too. The bug fix is general and not related to specific model.


import os
import pyrealsense2 as rs2
Expand Down
4 changes: 3 additions & 1 deletion unit-tests/live/rec-play/test-pause-playback-frames.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
# License: Apache 2.0. See LICENSE file in root directory.
# Copyright(c) 2021 RealSense, Inc. All Rights Reserved.

#test:device D400* !D457
# test:device D400* !D457
# Running nightly as this tests specific bug fix in a code that is seldom touched, no need to run for each push.
# test:donotrun:!nightly

# Objective:
#
Expand Down
5 changes: 4 additions & 1 deletion unit-tests/live/rec-play/test-record-and-stream.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
# License: Apache 2.0. See LICENSE file in root directory.
# Copyright(c) 2023 RealSense, Inc. All Rights Reserved.

#test:device D400*
# test:device each(D400*)
# test:device each(D500*)
# Running nightly as this tests specific bug fix in a code that is seldom touched, no need to run for each push.
# test:donotrun:!nightly

#The test flow is a result of a fixed bug - viewer crashed when starting stream after finishing record session

Expand Down
Loading