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.
25 lines
704 B
25 lines
704 B
# License: Apache 2.0. See LICENSE file in root directory.
|
|
# Copyright(c) 2022 Intel Corporation. All Rights Reserved.
|
|
|
|
from rspy import log, test
|
|
import pyrealsense2 as rs
|
|
import common
|
|
|
|
|
|
#############################################################################################
|
|
#
|
|
test.start( f"log info" )
|
|
|
|
try:
|
|
rs.log_to_callback( rs.log_severity.info, common.message_counter )
|
|
test.check_equal( common.n_messages, 0 )
|
|
common.log_all()
|
|
test.check_equal( common.n_messages, 3 ) # info, warning, error
|
|
except:
|
|
test.unexpected_exception()
|
|
|
|
test.finish()
|
|
#
|
|
#############################################################################################
|
|
test.print_results_and_exit()
|