Merge pull request #928 from oshchirs/move_cas_log_configuration

Add CAS log dump to extra logs
This commit is contained in:
Robert Baldyga 2021-08-26 10:27:21 +02:00 committed by GitHub
commit 8389e22243
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

@ -1 +1 @@
Subproject commit 6f9e0248aa46ecbb51227d5618bcb48fa536fbd9 Subproject commit e475f4518508927ec415ad57d899efdf7c585117

View File

@ -53,6 +53,7 @@ def pytest_runtest_setup(item):
dut_config['plugins_dir'] = os.path.join(os.path.dirname(__file__), "../lib") dut_config['plugins_dir'] = os.path.join(os.path.dirname(__file__), "../lib")
dut_config['opt_plugins'] = {"test_wrapper": {}, "serial_log": {}, "power_control": {}} dut_config['opt_plugins'] = {"test_wrapper": {}, "serial_log": {}, "power_control": {}}
dut_config['extra_logs'] = {"cas": "/var/log/opencas.log"}
try: try:
TestRun.prepare(item, dut_config) TestRun.prepare(item, dut_config)