You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
403 B

# License: Apache 2.0. See LICENSE file in root directory.
# Copyright(c) 2021 Intel Corporation. All Rights Reserved.
#test:device each(D400*)
#test:priority 1
#test:flag windows
import pyrealsense2 as rs
from rspy import test, log
test.start("checking metadata is enabled")
dev = test.find_first_device_or_exit()
test.check( dev.is_metadata_enabled() )
test.finish()
test.print_results_and_exit()