Skip to content

Commit

Permalink
PR #11666 from Nir-Az: Run more tests on more devices
Browse files Browse the repository at this point in the history
  • Loading branch information
Nir-Az authored Apr 16, 2023
2 parents 5aec3fd + c49323e commit fc4fbe1
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 8 deletions.
2 changes: 2 additions & 0 deletions unit-tests/live/d400/test-auto-limits.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
/////////////////////////////////////////////////////////////////////////////

//#test:device D400* !D457
// auto-limits option is deprecated currently [LRS-487]
//#test:donotrun

#include "../../catch.h"
#include "../../unit-tests-common.h"
Expand Down
2 changes: 1 addition & 1 deletion unit-tests/live/frames/test-fps.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Copyright(c) 2022 Intel Corporation. All Rights Reserved.

# test:device L500*
# test:device D400*
# test:device each(D400*)
# test:donotrun:!nightly
# test:timeout 250
# timeout = (seconds_till_steady_state + seconds_to_count_frames) * tested_fps.size() * 2 + 10. (2 because depth + color, 10 spare)
Expand Down
2 changes: 1 addition & 1 deletion unit-tests/live/frames/test-t2ff-pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Copyright(c) 2021 Intel Corporation. All Rights Reserved.

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


import pyrealsense2 as rs
Expand Down
2 changes: 1 addition & 1 deletion unit-tests/live/frames/test-t2ff-sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Copyright(c) 2021 Intel Corporation. All Rights Reserved.

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

import pyrealsense2 as rs
from rspy.stopwatch import Stopwatch
Expand Down
3 changes: 2 additions & 1 deletion unit-tests/live/metadata/test-alive.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,10 @@ def append_testing_profiles(dev) -> None:
"""
global testing_profiles

# We only pick default profiles to avoid starting unsupported profiles
for s in dev.sensors:
for p in s.profiles:
if not is_contain_profile(testing_profiles, p):
if not is_contain_profile(testing_profiles, p) and p.is_default():
testing_profiles[p] = s


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Copyright(c) 2021 Intel Corporation. All Rights Reserved.

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

import pyrealsense2 as rs
from rspy import test
Expand Down
2 changes: 1 addition & 1 deletion unit-tests/live/options/test-set-gain-stress-test.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# License: Apache 2.0. See LICENSE file in root directory.
# Copyright(c) 2021 Intel Corporation. All Rights Reserved.

# test:device D400*
# test:device each(D400*)
# test:donotrun:!nightly

import pyrealsense2 as rs
Expand Down
2 changes: 1 addition & 1 deletion unit-tests/live/options/test-timestamp-domain.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# License: Apache 2.0. See LICENSE file in root directory.
# Copyright(c) 2022 Intel Corporation. All Rights Reserved.

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

import time
import pyrealsense2 as rs
Expand Down
2 changes: 1 addition & 1 deletion unit-tests/live/streaming/test-y16.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// License: Apache 2.0. See LICENSE file in root directory.
// Copyright(c) 2022 Intel Corporation. All Rights Reserved.

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

#include "../live-common.h"
#include <rsutils/time/timer.h>
Expand Down

0 comments on commit fc4fbe1

Please sign in to comment.