Apply formatting on files that only needed adding newlines. Signed-off-by: Pieter De Gendt <pieter.degendt@basalte.be>
31 lines
595 B
Python
31 lines
595 B
Python
#
|
|
# Copyright (c) 2023 intel Corporation.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
import pytest
|
|
|
|
|
|
def pytest_addoption(parser):
|
|
parser.addoption('--gdb_target_remote')
|
|
parser.addoption('--gdb_timeout')
|
|
parser.addoption('--gdb_script')
|
|
|
|
|
|
@pytest.fixture()
|
|
def gdb_script(request):
|
|
return request.config.getoption('--gdb_script')
|
|
|
|
|
|
@pytest.fixture()
|
|
def gdb_timeout(request):
|
|
return int(request.config.getoption('--gdb_timeout', default=60))
|
|
|
|
|
|
@pytest.fixture()
|
|
def gdb_target_remote(request):
|
|
return request.config.getoption('--gdb_target_remote', default=":5678")
|
|
|
|
|
|
#
|